feat(layout): add ProblemSolutionLayout component for flexible layout structure

This commit is contained in:
cfngc4594 2025-02-26 11:09:31 +08:00
parent 969932cb00
commit 0606ec8971

View File

@ -0,0 +1,13 @@
interface ProblemSolutionLayoutProps {
children: React.ReactNode;
}
export default function ProblemSolutionLayout({
children,
}: ProblemSolutionLayoutProps) {
return (
<div className="h-full flex flex-col">
{children}
</div>
);
}