diff --git a/src/app/(app)/problems/[id]/@ai/@bot/layout.tsx b/src/app/(app)/problems/[id]/@ai/@bot/layout.tsx new file mode 100644 index 0000000..8185d75 --- /dev/null +++ b/src/app/(app)/problems/[id]/@ai/@bot/layout.tsx @@ -0,0 +1,16 @@ +import { Suspense } from "react"; +import { Loading } from "@/components/loading"; + +interface AiBotLayoutProps { + children: React.ReactNode; +} + +export default function AiBotLayout({ + children, +}: AiBotLayoutProps) { + return ( + }> + {children} + + ); +}