aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123.@mail.com>2020-06-07 00:40:37 +0300
committerilyayudovin <ilyayudovin123.@mail.com>2020-06-07 00:40:37 +0300
commit709fc75cdf91bcabac41573da5c36fe0cf72f869 (patch)
tree415222ea4540e6ec3ec6b310ed986af81ad69598 /src/index.tsx
parentf25124c0de2b87718192c45c3c59d51a42b006fd (diff)
downloadwhich-ui-709fc75cdf91bcabac41573da5c36fe0cf72f869.tar.gz
refactor: change names and imports
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>
);
};