guild_front/src/App.js

43 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-06-16 17:51:25 +03:00
import React, { useState, Suspense, lazy } from 'react';
2021-06-02 18:25:25 +03:00
import { HashRouter as Router, Route, Switch } from 'react-router-dom';
2021-05-27 17:44:11 +03:00
import 'bootstrap/dist/css/bootstrap.min.css';
import './fonts/stylesheet.css';
2021-06-16 17:51:25 +03:00
// const AuthPageForDevelopers = lazy(() => import('./pages/AuthPageForDevelopers'));
// const AuthPageForPartners = lazy(() => import('./pages/AuthPageForPartners'));
2021-05-27 17:44:11 +03:00
const HomePage = lazy(() => import('./pages/HomePage'));
const CandidatePage = lazy(() => import('./pages/CandidatePage'));
2021-06-16 17:51:25 +03:00
const CalendarPage = lazy(() => import('./pages/CalendarPage'));
2021-05-26 13:35:57 +03:00
const App = () => {
2021-06-10 18:17:50 +03:00
const [isAuth, setIsAuth] = useState(false);
2021-05-31 13:40:49 +03:00
return (
2021-05-26 13:35:57 +03:00
<Router>
<Suspense fallback={<div>Loading...</div>}>
{isAuth ? (
<Switch>
2021-05-31 18:23:25 +03:00
<Route path="/" exact>
<HomePage />
</Route>
<Route path="/candidate/:id">
<CandidatePage />
</Route>
<Route>
<div>Not found page</div>
</Route>
2021-05-26 13:35:57 +03:00
</Switch>
) : (
2021-05-31 18:23:25 +03:00
<Route path="/" exact>
2021-06-16 17:51:25 +03:00
<CalendarPage />
{/* <AuthPageForDevelopers setAuth={setIsAuth} /> */}
{/* <AuthPageForPartners setAuth={setIsAuth} /> */}
2021-05-31 18:23:25 +03:00
</Route>
2021-05-26 13:35:57 +03:00
)}
</Suspense>
</Router>
2021-05-27 17:44:11 +03:00
);
};
2021-05-27 17:44:11 +03:00
export default App;