-
Notifications
You must be signed in to change notification settings - Fork 2
events page updated #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make the suggested chnages
@@ -17,8 +18,7 @@ | |||
"react-i18next": "^11.4.0", | |||
"react-router-dom": "^5.1.2", | |||
"react-scripts": "3.4.1", | |||
"react-use": "^14.2.0", | |||
"@material-ui/core": "latest" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use this version of material-ui/core
@@ -3,6 +3,7 @@ | |||
"version": "0.1.0", | |||
"private": true, | |||
"dependencies": { | |||
"@material-ui/core": "^4.9.13", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this version should not be used
@@ -1,9 +1,96 @@ | |||
import React from 'react' | |||
import React from 'react'; | |||
import PropTypes from 'prop-types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add prop-types as a dependency in package.json
<Showcase/> | ||
</TabPanel> | ||
<TabPanel value={value} index={1}> | ||
<Showcase/> | ||
</TabPanel> | ||
<TabPanel value={value} index={2}> | ||
<Showcase/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pass cardData as a prop to component
<Tab label="Past Events" {...a11yProps(2)} /> | ||
</Tabs> | ||
</AppBar> | ||
<TabPanel value={value} index={0}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Each card has an unexpected background. Check that and correct the styles
No description provided.