Files
gridpilot.gg/apps/website/ui/ProfileLayoutShell.tsx
2026-01-15 17:12:24 +01:00

10 lines
255 B
TypeScript

import type { ReactNode } from 'react';
interface ProfileLayoutShellProps {
children: ReactNode;
}
export function ProfileLayoutShell({ children }: ProfileLayoutShellProps) {
return <div className="min-h-screen bg-deep-graphite">{children}</div>;
}