first template, material ui, navigation

This commit is contained in:
2021-01-06 08:51:58 +01:00
commit 649bf84f1e
55 changed files with 28527 additions and 0 deletions
@@ -0,0 +1,18 @@
import React from 'react';
import { Route } from 'react-router-dom';
const CustomRoute = ({ layout: Layout, component: Component }) => {
return (
<Route
render={(matchProps) => {
return (
<Layout>
<Component {...matchProps} />
</Layout>
);
}}
/>
);
};
export default CustomRoute;
@@ -0,0 +1 @@
export {default} from './CustomRoute'