mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 11:41:04 +05:30
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { hot } from 'react-hot-loader/root';
|
|
import React, { ComponentType } from 'react';
|
|
import { Route, Switch } from 'react-router-dom';
|
|
|
|
import { Store } from 'app/types';
|
|
import AuthFlowRoute from 'app/containers/AuthFlowRoute';
|
|
import RootPage from 'app/pages/root/RootPage';
|
|
import { ComponentLoader } from 'app/components/ui/loader';
|
|
|
|
import ContextProvider from './ContextProvider';
|
|
|
|
import type { History } from 'history';
|
|
|
|
const SuccessOauthPage = React.lazy(
|
|
() => import(/* webpackChunkName: "page-oauth-success" */ 'app/pages/auth/SuccessOauthPage'),
|
|
);
|
|
|
|
interface Props {
|
|
store: Store;
|
|
history: History;
|
|
}
|
|
|
|
const App: ComponentType<Props> = ({ store, history }) => (
|
|
<ContextProvider store={store} history={history}>
|
|
<React.Suspense fallback={<ComponentLoader />}>
|
|
<Switch>
|
|
<Route path="/oauth2/code/success" component={SuccessOauthPage} />
|
|
<AuthFlowRoute path="/oauth2/:version(v\d+)/:clientId?" component={() => null} />
|
|
<Route path="/" component={RootPage} />
|
|
</Switch>
|
|
</React.Suspense>
|
|
</ContextProvider>
|
|
);
|
|
|
|
export default hot(App);
|