aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.tsx b/src/index.tsx
index e2d631d..0ad62e0 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -7,7 +7,7 @@ import teal from '@material-ui/core/colors/teal';
import 'typeface-roboto';
import Header from './Header/Header';
-import MediaCard from './poll-component/poll-component';
+import PollCard from './PollCard/PollCard';
const theme = createMuiTheme({
palette: {
@@ -28,7 +28,7 @@ const App: React.FC = () => {
<ThemeProvider theme={theme}>
<CssBaseline />
<Header page={page} setPage={setPage} />
- <MediaCard/>
+ <PollCard/>
</ThemeProvider>
);
};