multica/apps/web/app/components/chat.tsx
Naiyuan Qing 2a1e5f0343 feat(web): add SidebarTrigger to Chat header
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 21:24:47 +08:00

12 lines
336 B
TypeScript

import { SidebarTrigger } from "@multica/ui/components/ui/sidebar";
export function Chat() {
return (
<div className="h-dvh flex flex-col overflow-hidden">
<header className="flex items-center p-2">
<SidebarTrigger />
</header>
<main className="flex-1 overflow-y-auto min-h-0"></main>
</div>
);
}