changed the structure a little bit - & add some margin to comment's list

This commit is contained in:
2025-01-28 10:56:05 +01:00
parent 4d43c53035
commit 504332b105
15 changed files with 69 additions and 83 deletions

View File

@@ -0,0 +1,8 @@
import {Layout} from 'react-admin';
import {MyAppBar} from "./MyAppBar.tsx";
export const MyLayout = ({ children } ) => (
<Layout appBar={MyAppBar} >
{children}
</Layout>
);