diff --git a/src/app/(app)/problems/[id]/@ai/layout.tsx b/src/app/(app)/problems/[id]/@ai/layout.tsx new file mode 100644 index 0000000..9f787f4 --- /dev/null +++ b/src/app/(app)/problems/[id]/@ai/layout.tsx @@ -0,0 +1,32 @@ +import { BotIcon } from "lucide-react"; +import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area"; +import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; + +interface AiLayoutProps { + bot: React.ReactNode; +} + +export default function AiLayout({ + bot, +}: AiLayoutProps) { + return ( + + + + + + + + + + {bot} + + + ); +}