import { ProfileLayoutViewData } from '@/lib/view-data/ProfileLayoutViewData'; import { ProfileSidebarTemplate } from '@/templates/ProfileSidebarTemplate'; import { Box } from '@/ui/Box'; import { Container } from '@/ui/Container'; import { Stack } from '@/ui/Stack'; import type { ReactNode } from 'react'; interface ProfileLayoutShellTemplateProps { viewData: ProfileLayoutViewData; children: ReactNode; } export function ProfileLayoutShellTemplate({ viewData, children }: ProfileLayoutShellTemplateProps) { return ( {children} ); }