aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123.@mail.com>2020-06-07 02:58:36 +0300
committerilyayudovin <ilyayudovin123.@mail.com>2020-06-07 02:58:36 +0300
commit4d3e2f0d19c1957feeebda7f476f4d56b377b86e (patch)
tree4f33a5d3db3f76aca40d4db94f07dc5dc9090efb /src/index.tsx
parente8b723ae4f046c9f0bee667569e08f7a856855f2 (diff)
downloadwhich-ui-4d3e2f0d19c1957feeebda7f476f4d56b377b86e.tar.gz
fix: fixing all eslint errors
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 0ad62e0..b59876b 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -12,13 +12,13 @@ import PollCard from './PollCard/PollCard';
const theme = createMuiTheme({
palette: {
primary: {
- main: teal[700],
+ main: teal[700]
},
text: {
primary: '#000000',
- secondary: 'rgba(255, 255, 255, 0.6)',
- },
- },
+ secondary: 'rgba(255, 255, 255, 0.6)'
+ }
+ }
});
const App: React.FC = () => {
@@ -28,7 +28,7 @@ const App: React.FC = () => {
<ThemeProvider theme={theme}>
<CssBaseline />
<Header page={page} setPage={setPage} />
- <PollCard/>
+ <PollCard />
</ThemeProvider>
);
};