mirror of
https://github.com/yusufipk/OpenFrame.git
synced 2026-09-11 09:36:08 +00:00
8 lines
220 B
TypeScript
8 lines
220 B
TypeScript
export default function OnboardingLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="min-h-screen bg-background flex items-center justify-center p-4">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|