import React from 'react'; import { Avatar } from '@material-ui/core/'; import { makeStyles } from '@material-ui/core/styles'; import { Poll } from '../types'; interface PropTypes { profile: Poll; } const useStyles = makeStyles({ avatar: { margin: '0 auto', width: 150, height: 150, marginBottom: 10 }, name: { fontSize: 20, textAlign: 'center' }, profileMenu: { display: 'flex', width: '100%', height: 50, borderBottom: '1px solid lightgray', margin: '50px 0' }, menuButton: { width: 200, height: 50, paddingTop: 15, textAlign: 'center' } }); const ProfileInfo: React.FC = ({ profile }) => { const classes = useStyles(); return (
Nick Name
Polls
Followers
Following
); }; export default ProfileInfo;