import React from 'react' type Chat = { name:string messages:string[] } type History = { chats:Chat[] }