forked from React-Group/interstellar_ai
14 lines
121 B
TypeScript
14 lines
121 B
TypeScript
|
import React from 'react'
|
||
|
|
||
|
type Chat = {
|
||
|
name:string
|
||
|
messages:string[]
|
||
|
}
|
||
|
|
||
|
type History = {
|
||
|
chats:Chat[]
|
||
|
}
|
||
|
|
||
|
|
||
|
|