changed the Appbar color #2

This commit is contained in:
2025-01-16 10:18:09 +01:00
parent 673fa579de
commit 29faa6cc30
3 changed files with 20 additions and 3 deletions

7
src/MyLayout.tsx Normal file
View File

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