blob: a7313fe0526f9d7fcf5f3f4ab3dab47e318a5230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import React from 'react';
import { Switch, Route } from 'react-router-dom';
import NotFound from 'containers/Pages/Standalone/NotFoundDedicated';
import Auth from './Auth';
import Application from './Application';
import LoginDedicated from '../Pages/Standalone/LoginDedicated';
import ThemeWrapper from './ThemeWrapper';
window.__MUI_USE_NEXT_TYPOGRAPHY_VARIANTS__ = true;
function App() {
return (
<ThemeWrapper>
<Switch>
<Route path="/" exact component={LoginDedicated} />
<Route path="/app" component={Application} />
<Route component={Auth} />
<Route component={NotFound} />
</Switch>
</ThemeWrapper>
);
}
export default App;
|