aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123.@mail.com>2020-06-07 19:10:15 +0300
committerilyayudovin <ilyayudovin123.@mail.com>2020-06-07 19:10:15 +0300
commiteea76a129c7e8001eca00037e5915c79ed685169 (patch)
tree2a49f217fb43defa399f065f04fbb7aa89264978 /src/index.tsx
parent4e4c9d529e6f70e7dac84aaecb5b6a25769c3290 (diff)
downloadwhich-ui-eea76a129c7e8001eca00037e5915c79ed685169.tar.gz
feat: add Feed and fucntionality for creating polls
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx25
1 files changed, 21 insertions, 4 deletions
diff --git a/src/index.tsx b/src/index.tsx
index d7efbf7..9811de2 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 PollCard from './PollCard/PollCard';
+import Feed from './Feed/Feed';
const theme = createMuiTheme({
palette: {
@@ -21,7 +21,7 @@ const theme = createMuiTheme({
}
});
-const pollProps = {
+const polls = [{
author: {
name: 'John Doe',
avatarUrl: ''
@@ -38,7 +38,24 @@ const pollProps = {
votes: 17
}
}
-};
+}, {
+ author: {
+ name: 'John Doe',
+ avatarUrl: ''
+ },
+ contents: {
+ left: {
+ // eslint-disable-next-line max-len
+ url: 'https://images.pexels.com/photos/556666/pexels-photo-556666.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500',
+ votes: 15
+ },
+ right: {
+ // eslint-disable-next-line max-len
+ url: 'https://cdn.psychologytoday.com/sites/default/files/field_blog_entry_images/2019-06/pexels-photo-556667.jpeg',
+ votes: 17
+ }
+ }
+}];
const App: React.FC = () => {
@@ -48,7 +65,7 @@ const App: React.FC = () => {
<ThemeProvider theme={theme}>
<CssBaseline />
<Header page={page} setPage={setPage} />
- <PollCard author={pollProps.author} contents={pollProps.contents} />
+ <Feed polls={polls} />
</ThemeProvider>
);
};