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