aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-07 16:36:50 +0300
committereug-vs <eug-vs@keemail.me>2020-06-07 16:36:50 +0300
commit48ece125761c4dce8175265c3b4de717a249eb0e (patch)
tree3170fa41761bdf0fd61f4a27b47ce17203d26ec1 /src/index.tsx
parentce8764580983e0008300bcc88d463da44d94c455 (diff)
downloadwhich-ui-48ece125761c4dce8175265c3b4de717a249eb0e.tar.gz
feat: improve PollCard component
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index b59876b..d7efbf7 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -21,6 +21,26 @@ const theme = createMuiTheme({
}
});
+const pollProps = {
+ 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 = () => {
const [page, setPage] = useState('feed');
@@ -28,7 +48,7 @@ const App: React.FC = () => {
<ThemeProvider theme={theme}>
<CssBaseline />
<Header page={page} setPage={setPage} />
- <PollCard />
+ <PollCard author={pollProps.author} contents={pollProps.contents} />
</ThemeProvider>
);
};