-
-
Notifications
You must be signed in to change notification settings - Fork 175
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
feat 115 boardButton preview #164
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.
looks good so far, some minor change needed, I still wanna check why you used state
width: 150px; | ||
height: 50px; | ||
} | ||
.BoardButtonDetails__fields .InputImage .InputImage__label { |
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.
No need to over qualify selectors you can reach the same result with .BoardButtonDetails__fields .InputImae__label
@@ -23,6 +23,7 @@ import InputImage from '../../InputImage'; | |||
import ColorSelection from '../../ColorSelection'; | |||
import './BoardButtonDetails.css'; | |||
|
|||
import BoardButton from '../BoardButton'; |
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.
I would move this under line 23
<BoardButton | ||
img={this.state.img} | ||
label={this.state.label} | ||
voalizaction={this.state.vocalization} |
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.
vocalization
prop has a typo 😄
No description provided.