Files
Practice-1/src/components/MyLayout.tsx

9 lines
187 B
TypeScript
Raw Normal View History

2025-01-16 13:47:21 +01:00
import {Layout} from 'react-admin';
import {MyAppBar} from "./MyAppBar.tsx";
export const MyLayout = ({ children } ) => (
<Layout appBar={MyAppBar} >
{children}
</Layout>
);