aboutsummaryrefslogtreecommitdiff
path: root/src/pages/ProfilePage
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/ProfilePage
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/ProfilePage')
-rw-r--r--src/pages/ProfilePage/ProfilePage.tsx13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/pages/ProfilePage/ProfilePage.tsx b/src/pages/ProfilePage/ProfilePage.tsx
index b7106bb..4710ae8 100644
--- a/src/pages/ProfilePage/ProfilePage.tsx
+++ b/src/pages/ProfilePage/ProfilePage.tsx
@@ -1,5 +1,6 @@
import React, { useState, useEffect } from 'react';
import { User, Poll } from 'which-types';
+import { makeStyles } from '@material-ui/core/styles';
import ProfileInfo from './ProfileInfo';
import Feed from '../../components/Feed/Feed';
@@ -8,12 +9,20 @@ import { useAuth } from '../../hooks/useAuth';
import { useNavigate } from '../../hooks/useNavigate';
+const useStyles = makeStyles(theme => ({
+ root: {
+ width: theme.spacing(75),
+ margin: '0 auto'
+ }
+}));
+
const ProfilePage: React.FC = () => {
const [userInfo, setUserInfo] = useState<User>();
const [polls, setPolls] = useState<Poll[]>([]);
const [totalVotes, setTotalVotes] = useState<number>(0);
const { page, navigate } = useNavigate();
const { user } = useAuth();
+ const classes = useStyles();
useEffect(() => {
const id = page?.id || user?._id;
@@ -35,7 +44,7 @@ const ProfilePage: React.FC = () => {
}, [navigate, page, user]);
return (
- <>
+ <div className={classes.root}>
<ProfileInfo
userInfo={userInfo}
setUserInfo={setUserInfo}
@@ -43,7 +52,7 @@ const ProfilePage: React.FC = () => {
totalVotes={totalVotes}
/>
<Feed polls={[...polls]} />
- </>
+ </div>
);
};