55 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-08-18 11:41:13 +02:00
/**
*
2017-08-21 15:12:53 +02:00
* App.js
2016-08-18 11:41:13 +02:00
*
* This component is the skeleton around the actual pages, and should only
* contain code that should be seen on all pages. (e.g. navigation bar)
2016-08-18 11:47:26 +02:00
*
* NOTE: while this component should technically be a stateless functional
* component (SFC), hot reloading does not currently support SFCs. If hot
* reloading is not a neccessity for you then you can refactor it and remove
* the linting exception.
2016-08-18 11:41:13 +02:00
*/
import React from 'react';
2017-08-21 15:12:53 +02:00
import { Switch, Route } from 'react-router-dom';
// From strapi-helper-plugin
2018-10-30 17:27:43 +01:00
import LoadingIndicatorPage from 'components/LoadingIndicatorPage';
2016-08-24 15:09:42 +02:00
import '../../styles/main.scss';
2019-04-02 22:45:21 +02:00
// import AdminPage from '../AdminPage';
import Admin from '../AdminPage';
import NotFoundPage from '../NotFoundPage';
import NotificationProvider from '../NotificationProvider';
import AppLoader from '../AppLoader';
2016-08-24 15:09:42 +02:00
import styles from './styles.scss';
2016-08-18 11:41:13 +02:00
function App() {
return (
<div>
<NotificationProvider />
<AppLoader>
{({ shouldLoad }) => {
if (shouldLoad) {
return <LoadingIndicatorPage />;
}
return (
<div className={styles.container}>
<Switch>
2019-04-02 22:45:21 +02:00
<Route path='/' component={Admin} />
<Route path='' component={NotFoundPage} />
</Switch>
</div>
);
}}
</AppLoader>
</div>
);
2016-08-18 11:47:26 +02:00
}
2017-08-21 15:12:53 +02:00
App.propTypes = {};
2017-08-21 15:12:53 +02:00
export default App;