Lift AppSidebar, SidebarInset and SidebarTrigger into the root layout so page.tsx only contains page-specific content. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
5 lines
97 B
TypeScript
5 lines
97 B
TypeScript
import { Chat } from "./components/chat";
|
|
|
|
export default function Page() {
|
|
return <Chat />;
|
|
}
|