14 lines
No EOL
268 B
TypeScript
14 lines
No EOL
268 B
TypeScript
import { useState } from "react"
|
|
|
|
const useChatHistory = () => {
|
|
type ChatMessages = {
|
|
name: string
|
|
messages: {}
|
|
timestamp: number
|
|
}
|
|
|
|
|
|
const [chathistory, setChatHistory] = useState<ChatMessages[]>()
|
|
}
|
|
|
|
export default useChatHistory |