import NotFound from 'components/NotFound'; import Spinner from 'components/Spinner'; import AppLayout from 'container/AppLayout'; import history from 'lib/history'; import React, { Suspense } from 'react'; import { Route, Router, Switch } from 'react-router-dom'; import routes from './routes'; const App = (): JSX.Element => ( }> {routes.map(({ path, component, exact }, index) => { return ( ); })} ); export default App;