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