import { ReactNode } from 'react' export default function SharedLayout({ children }: { children: ReactNode }) { return
{children}
}