Initial commit
This commit is contained in:
13
resources/js/layouts/AppLayout.tsx
Normal file
13
resources/js/layouts/AppLayout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { type ReactNode } from 'react';
|
||||
import { Head } from '@inertiajs/react';
|
||||
|
||||
interface AppLayoutProps {
|
||||
children: ReactNode;
|
||||
}
|
||||
|
||||
export default ({ children }: AppLayoutProps) =>
|
||||
(<>
|
||||
<Head>
|
||||
</Head>
|
||||
{children}
|
||||
</>);
|
||||
Reference in New Issue
Block a user