diff options
author | eug-vs <eug-vs@keemail.me> | 2020-06-08 13:08:08 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-06-08 13:08:08 +0300 |
commit | b69c87ffc5fa62304f9a5f3ede5c75550e89eedd (patch) | |
tree | 5dd1ab6ea0d958ac0f20151e1f947835caaa025e | |
parent | 1a6c64e09af7a67dc5c69ea1e0a799b2795bcbfe (diff) | |
download | which-ui-b69c87ffc5fa62304f9a5f3ede5c75550e89eedd.tar.gz |
style: fix linting errors
-rw-r--r-- | src/index.tsx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/index.tsx b/src/index.tsx index 164c78b..8340b79 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -56,12 +56,11 @@ const polls = [{ } }]; -const useStyles = makeStyles(theme => ({ +const useStyles = makeStyles({ root: { - marginTop: theme.spacing(15), - }, -})); - + marginTop: theme.spacing(15) + } +}); const App: React.FC = () => { |