first commit

This commit is contained in:
2025-01-06 12:59:58 +01:00
commit 0826229c1b
19 changed files with 6576 additions and 0 deletions

9
src/Layout.tsx Normal file
View File

@@ -0,0 +1,9 @@
import type { ReactNode } from "react";
import { Layout as RALayout, CheckForApplicationUpdate } from "react-admin";
export const Layout = ({ children }: { children: ReactNode }) => (
<RALayout>
{children}
<CheckForApplicationUpdate />
</RALayout>
);