diff --git a/src/app/(app)/playground/@problem/@submission/layout.tsx b/src/app/(app)/playground/@problem/@submission/layout.tsx new file mode 100644 index 0000000..438f5e3 --- /dev/null +++ b/src/app/(app)/playground/@problem/@submission/layout.tsx @@ -0,0 +1,16 @@ +import ProblemSubmissionFooter from "./components/footer"; + +interface ProblemSubmissionLayoutProps { + children: React.ReactNode; +} + +export default function ProblemSubmissionLayout({ + children, +}: ProblemSubmissionLayoutProps) { + return ( +
+
{children}
+ +
+ ); +}