aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123.@mail.com>2020-06-07 00:25:53 +0300
committerilyayudovin <ilyayudovin123.@mail.com>2020-06-07 00:25:53 +0300
commitf25124c0de2b87718192c45c3c59d51a42b006fd (patch)
tree9f462483d8f58636b38bc300ca112dc4b10ec394 /src/index.tsx
parent9f60b1a5845a3e9efc7254e7f7929195524ee674 (diff)
downloadwhich-ui-f25124c0de2b87718192c45c3c59d51a42b006fd.tar.gz
feat:create initial poll-component
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>
);
};