aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Page.tsx
diff options
context:
space:
mode:
authorEugene Sokolov <eug-vs@keemail.me>2020-07-03 21:16:24 +0300
committerGitHub <noreply@github.com>2020-07-03 21:16:24 +0300
commitaf51f6c8a6fabdd8e578e13599b33f121f483a52 (patch)
tree1104abe0fa751b858177324b408f9bdf830ed15a /src/pages/Page.tsx
parentcb521315c2291eda6b273b5f8a2e014c24ea9758 (diff)
parent14926e00ec1d749d5e2c83bdcd98ed68e9b2f896 (diff)
downloadwhich-ui-af51f6c8a6fabdd8e578e13599b33f121f483a52.tar.gz
Merge pull request #59 from which-ecosystem/pages
Markup landing page and blank notifications page
Diffstat (limited to 'src/pages/Page.tsx')
-rw-r--r--src/pages/Page.tsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pages/Page.tsx b/src/pages/Page.tsx
index f6353b2..24487f3 100644
--- a/src/pages/Page.tsx
+++ b/src/pages/Page.tsx
@@ -4,13 +4,13 @@ import { SnackbarProvider } from 'notistack';
import ProfilePage from './ProfilePage/ProfilePage';
import FeedPage from './FeedPage/FeedPage';
import AuthPage from './AuthPage/AuthPage';
+import HomePage from './HomePage/HomePage';
+import NotificationsPage from './NotificationsPage/NotificationsPage';
import { useNavigate } from '../hooks/useNavigate';
const useStyles = makeStyles(theme => ({
root: {
- width: theme.spacing(75),
- marginTop: theme.spacing(15),
- margin: '0 auto'
+ margin: theme.spacing(15, 5, 5, 8)
}
}));
@@ -27,9 +27,11 @@ const Page: React.FC = () => {
}}
>
<div className={classes.root}>
+ { page.prefix === 'home' && <HomePage />}
{ page.prefix === 'profile' && <ProfilePage />}
{ page.prefix === 'feed' && <FeedPage /> }
{ page.prefix === 'auth' && <AuthPage /> }
+ { page.prefix === 'notifications' && <NotificationsPage /> }
</div>
</SnackbarProvider>
);