diff options
author | eug-vs <eug-vs@keemail.me> | 2020-07-03 19:11:41 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-07-03 19:12:15 +0300 |
commit | 68de14f03ec3cba9937669535783956766363462 (patch) | |
tree | 0ca492301b6d8c7fd23d98fc97e74cabd7feac20 /src/pages/ProfilePage/ProfilePage.tsx | |
parent | 2247e281f7f1c8c59ff758053dcb7b2c4f28d4a9 (diff) | |
download | which-ui-68de14f03ec3cba9937669535783956766363462.tar.gz |
refactor: distribute styles across pages
Diffstat (limited to 'src/pages/ProfilePage/ProfilePage.tsx')
-rw-r--r-- | src/pages/ProfilePage/ProfilePage.tsx | 13 |
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> ); }; |