import { ChatEntry } from "../../hooks/useChatHistory"; import "./index.css"; interface Props { entries: ChatEntry[]; } export default function ChatHistory(props: Props) { return ( ); }