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