aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 9225909..e2d631d 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -7,6 +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';
const theme = createMuiTheme({
palette: {
@@ -27,7 +28,7 @@ const App: React.FC = () => {
<ThemeProvider theme={theme}>
<CssBaseline />
<Header page={page} setPage={setPage} />
- <h1> Hello, world! </h1>
+ <MediaCard/>
</ThemeProvider>
);
};