Add umami analytics
This commit is contained in:
@@ -1,13 +1,9 @@
|
||||
import { type ReactNode } from 'react';
|
||||
import { Head } from '@inertiajs/react';
|
||||
|
||||
interface AppLayoutProps {
|
||||
children: ReactNode;
|
||||
}
|
||||
|
||||
export default ({ children }: AppLayoutProps) =>
|
||||
(<>
|
||||
<Head>
|
||||
</Head>
|
||||
{children}
|
||||
</>);
|
||||
export default ({ children }: AppLayoutProps) => {
|
||||
return <>{children}</>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user