aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123@gmail.com>2020-06-08 14:55:52 +0300
committerilyayudovin <ilyayudovin123@gmail.com>2020-06-08 14:55:52 +0300
commit77fe6ac371160ffc385b1378093f34d0b1f2a8c9 (patch)
treefe658661325324f1bfe872dedd642120732dd877
parent73693e619d63d0321848b633bbe0d93eba9dd3bb (diff)
downloadwhich-ui-77fe6ac371160ffc385b1378093f34d0b1f2a8c9.tar.gz
fix: fix eslint errors
-rw-r--r--src/Feed/Feed.tsx2
-rw-r--r--src/Header/Header.tsx1
-rw-r--r--src/ProfileInfo/ProfileInfo.tsx31
-rw-r--r--src/index.tsx12
4 files changed, 19 insertions, 27 deletions
diff --git a/src/Feed/Feed.tsx b/src/Feed/Feed.tsx
index e303fa7..33e6d03 100644
--- a/src/Feed/Feed.tsx
+++ b/src/Feed/Feed.tsx
@@ -9,7 +9,7 @@ interface PropTypes {
const usedStyles = makeStyles(theme => ({
feed: {
- position:'relative',
+ position: 'relative',
maxWidth: theme.spacing(75),
margin: '0 auto'
}
diff --git a/src/Header/Header.tsx b/src/Header/Header.tsx
index 3f9e7ee..0ee6b5f 100644
--- a/src/Header/Header.tsx
+++ b/src/Header/Header.tsx
@@ -37,7 +37,6 @@ const Header: React.FC<PropTypes> = ({ setPage }) => {
const handleProfile = (): void => {
setPage('profile');
-
};
const handleNotifications = (): void => {};
diff --git a/src/ProfileInfo/ProfileInfo.tsx b/src/ProfileInfo/ProfileInfo.tsx
index 233411f..ac8ef26 100644
--- a/src/ProfileInfo/ProfileInfo.tsx
+++ b/src/ProfileInfo/ProfileInfo.tsx
@@ -1,44 +1,39 @@
import React from 'react';
-import {
- Card,
- CardActionArea,
- CardMedia,
- Avatar,
- CardHeader
-} from '@material-ui/core/';
-import {makeStyles} from "@material-ui/core";
+import { Avatar } from '@material-ui/core/';
+import { makeStyles } from '@material-ui/core/styles';
import { Poll } from '../types';
-interface propTypes {
+interface PropTypes {
profile: Poll;
}
+
const useStyles = makeStyles({
avatar: {
margin: '0 auto',
width: 150,
height: 150,
- marginBottom: 10,
+ marginBottom: 10
},
name: {
- fontSize:20,
- textAlign: 'center',
+ fontSize: 20,
+ textAlign: 'center'
},
profileMenu: {
display: 'flex',
width: '100%',
height: 50,
borderBottom: '1px solid lightgray',
- margin: '50px 0',
+ margin: '50px 0'
},
menuButton: {
width: 200,
height: 50,
paddingTop: 15,
- textAlign: 'center',
+ textAlign: 'center'
}
});
-const ProfileInfo: React.FC<propTypes>=({profile})=>{
+const ProfileInfo: React.FC<PropTypes> = ({ profile }) => {
const classes = useStyles();
return (
@@ -48,7 +43,7 @@ const ProfileInfo: React.FC<propTypes>=({profile})=>{
Nick Name
</div>
<div className={classes.profileMenu}>
- <div style={{borderBottom: '1px solid green',color: 'green'}} className={classes.menuButton}>
+ <div style={{ borderBottom: '1px solid green', color: 'green' }} className={classes.menuButton}>
Polls
</div>
<div className={classes.menuButton}>
@@ -60,6 +55,6 @@ const ProfileInfo: React.FC<propTypes>=({profile})=>{
</div>
</div>
);
-}
+};
-export default ProfileInfo; \ No newline at end of file
+export default ProfileInfo;
diff --git a/src/index.tsx b/src/index.tsx
index bc6158a..a7df3c1 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -57,15 +57,13 @@ const polls = [{
}
}];
-const useStyles = makeStyles(theme => ({
+const useStyles = makeStyles({
root: {
width: 600,
marginTop: theme.spacing(15),
- margin: '0 auto',
- },
-}));
-
-
+ margin: '0 auto'
+ }
+});
const App: React.FC = () => {
const [page, setPage] = useState('feed');
@@ -77,7 +75,7 @@ const App: React.FC = () => {
<Header setPage={setPage} />
<div className={classes.root}>
{
- page === 'profile' ? <ProfileInfo profile={polls[0]}/> : null
+ page === 'profile' ? <ProfileInfo profile={polls[0]} /> : null
}
<Feed polls={polls} />
<h1> We are on page {page}! </h1>