diff options
author | eug-vs <eug-vs@keemail.me> | 2020-08-10 00:02:24 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-08-10 00:02:24 +0300 |
commit | fd6e663a1bcc43cfc49bda99ccbfab380489324b (patch) | |
tree | ea25ea2c81db0f64e10123dbadd73f361b904da2 /src/pages/Page.tsx | |
parent | 359ec6a68ea92b3d1eecf020742157eb3be90b9f (diff) | |
download | which-ui-fd6e663a1bcc43cfc49bda99ccbfab380489324b.tar.gz |
feat!: add useLocalStorage hook
Diffstat (limited to 'src/pages/Page.tsx')
-rw-r--r-- | src/pages/Page.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pages/Page.tsx b/src/pages/Page.tsx index 49c941a..a77a98e 100644 --- a/src/pages/Page.tsx +++ b/src/pages/Page.tsx @@ -5,12 +5,12 @@ import { SnackbarProvider } from 'notistack'; import { Switch, Route } from 'react-router-dom'; import Loading from '../components/Loading/Loading'; -const ProfilePage = React.lazy(() => import( './ProfilePage/ProfilePage')); -const FeedPage = React.lazy(() => import( './FeedPage/FeedPage')); -const LoginPage = React.lazy(() => import( './LoginPage/LoginPage')); -const RegistrationPage = React.lazy(() => import( './RegistrationPage/RegistrationPage')); -const HomePage = React.lazy(() => import( './HomePage/HomePage')); -const NotificationsPage = React.lazy(() => import( './NotificationsPage/NotificationsPage')); +const ProfilePage = React.lazy(() => import('./ProfilePage/ProfilePage')); +const FeedPage = React.lazy(() => import('./FeedPage/FeedPage')); +const LoginPage = React.lazy(() => import('./LoginPage/LoginPage')); +const RegistrationPage = React.lazy(() => import('./RegistrationPage/RegistrationPage')); +const HomePage = React.lazy(() => import('./HomePage/HomePage')); +const NotificationsPage = React.lazy(() => import('./NotificationsPage/NotificationsPage')); const useStyles = makeStyles(theme => ({ |