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