Started changes the file structure

This commit is contained in:
sageTheDM 2024-09-20 10:34:16 +02:00
parent 464df4adac
commit 89b3b824c7
17 changed files with 12 additions and 12 deletions

View file

@ -0,0 +1,13 @@
import React from 'react'
type Chat = {
name:string
messages:string[]
}
type History = {
chats:Chat[]
}