import React, { Suspense, lazy } from 'react' import { BrowserRouter as Router, Route, Switch } from 'react-router-dom' import 'bootstrap/dist/css/bootstrap.min.css' const AuthPage = lazy(() => import('./pages/AuthPage')) const HomePage = lazy(() => import('./pages/HomePage')) const CandidatePage = lazy(() => import('./pages/CandidatePage')) const App = () => { const isAuth = true return ( Loading...}> {isAuth ? ( Not found page} /> ) : ( )} ) } export default App