diff --git a/src/app/(app)/playground/@problem/@solution/layout.tsx b/src/app/(app)/playground/@problem/@solution/layout.tsx new file mode 100644 index 0000000..d3665b0 --- /dev/null +++ b/src/app/(app)/playground/@problem/@solution/layout.tsx @@ -0,0 +1,13 @@ +interface ProblemSolutionLayoutProps { + children: React.ReactNode; +} + +export default function ProblemSolutionLayout({ + children, +}: ProblemSolutionLayoutProps) { + return ( +