diff options
Diffstat (limited to 'src/index.tsx')
-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 = () => { |