10 lines
255 B
TypeScript
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>;
|
|
}
|