Files
gridpilot.gg/apps/website/components/profile/ProfileLayoutShell.tsx
2026-01-14 02:02:24 +01:00

10 lines
263 B
TypeScript

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