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