aboutsummaryrefslogtreecommitdiff
path: root/src/pages/ProfilePage/ProfilePage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/ProfilePage/ProfilePage.tsx')
-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>
);
};