|
- // project import
- import Routes from 'routes';
- import ThemeCustomization from 'themes';
- import ScrollTop from 'components/ScrollTop';
- import { PNSPS_THEME } from './themes/themeConst';
- import { ThemeProvider } from '@emotion/react';
- import { ToastContainer } from 'react-toastify';
- import 'react-toastify/dist/ReactToastify.css';
- //import {isUserLoggedIn} from 'utils/Utils';
- //import {DefaultRoute} from 'routes/index'
- // ==============================|| APP - THEME, ROUTER, LOCAL ||============================== //
-
- const App = () => (
- <ThemeCustomization>
- <ThemeProvider theme={PNSPS_THEME}>
- <ScrollTop>
- <Routes />
- </ScrollTop>
- </ThemeProvider>
- <ToastContainer />
- </ThemeCustomization>
- );
-
- export default App;
|