21 lines
471 B
TypeScript
21 lines
471 B
TypeScript
import { Layout as RaLayout, LayoutProps, Sidebar } from "react-admin";
|
|
import AppBar from "./AppBar";
|
|
import Menu from "./Menu";
|
|
import { theme } from "./themes";
|
|
|
|
const CustomSidebar = (props: any) => <Sidebar {...props} size={200} />;
|
|
|
|
const Layout = (props: LayoutProps) => {
|
|
return (
|
|
<RaLayout
|
|
{...props}
|
|
appBar={AppBar}
|
|
menu={Menu}
|
|
sidebar={CustomSidebar}
|
|
// @ts-ignore
|
|
theme={theme}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|