Updated dependencies

This commit is contained in:
2022-08-01 10:34:35 +01:00
parent fd29385cf8
commit 4cbf67dcbb
17 changed files with 523 additions and 692 deletions
-13
View File
@@ -1,13 +0,0 @@
import React from 'react';
import { Route } from 'react-router-dom';
import loadable from '@loadable/component';
const LazyRoute = props => {
const { component, ...lazyProps } = props;
const lazyComponent = loadable(component);
return <Route {...lazyProps} component={lazyComponent} />
};
export default LazyRoute;