Files
Practice-1/src/MyLayout.tsx
2025-01-16 10:18:09 +01:00

8 lines
182 B
TypeScript

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