Files
Practice-1/src/MyLayout.tsx

8 lines
182 B
TypeScript
Raw Normal View History

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