Files
ghostpizza/resources/js/layouts/AppLayout.tsx
2025-10-11 17:02:49 +02:00

14 lines
235 B
TypeScript

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