9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
|
|
import {Layout} from 'react-admin';
|
||
|
|
import {MyAppBar} from "./MyAppBar.tsx";
|
||
|
|
|
||
|
|
export const MyLayout = ({ children } ) => (
|
||
|
|
<Layout appBar={MyAppBar} >
|
||
|
|
{children}
|
||
|
|
</Layout>
|
||
|
|
);
|