import { type ReactNode } from 'react'; interface AppLayoutProps { children: ReactNode; } export default ({ children }: AppLayoutProps) => { return <>{children}; };