chih.yikuan
πŸš€ ExamInsight: AI-powered exam analysis for teachers
054d73a
import { SimpleChatPanel } from "./components/SimpleChatPanel";
export function TestChat() {
return (
<main className="flex min-h-screen flex-col items-center justify-end bg-slate-100 dark:bg-slate-950 p-4">
<div className="mx-auto w-full max-w-3xl">
<h1 className="text-2xl font-bold mb-4 text-center">ChatKit Test</h1>
<SimpleChatPanel />
</div>
</main>
);
}