-
Notifications
You must be signed in to change notification settings - Fork 17
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
Kate's mini proj #5
base: master
Are you sure you want to change the base?
Conversation
import React from 'react'; | ||
|
||
|
||
class History extends React.Component{ |
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.
Does this component do anything?
padding: 30 | ||
}; | ||
|
||
return ReactDOM.createPortal( |
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.
nice
@@ -0,0 +1,56 @@ | |||
import React from 'react'; | |||
import PropTypes from 'prop-types'; | |||
import { withStyles } from '@material-ui/core/styles'; |
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.
In future avoid using external ui libraries. You'll learn more by implementing the ui yourself
Would have loved to see work done without external ui library. The problem with using a ui library is that it does not tell me much about what you are able to do without the library. |
No description provided.