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} ); }