aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
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>
);
};