We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you have React components that only call render you can express this more succinctly (and React runs them faster) as a functional component:
render
const BackButton = ({ link }) => ( <Link to={link}> ... </Link> );
Destructing the props argument is a super-common React pattern that can clean up your code quite a lot.
The text was updated successfully, but these errors were encountered:
make title a functional component, relates #154
68f74d5
make addnewbanner a functional component, relates #154
bc35771
make AddNewTile a functional component, relates #154
c0b4251
make InstructionText a functional component, relates #154
b1fffa9
Brymon
No branches or pull requests
If you have React components that only call
render
you can express this more succinctly (and React runs them faster) as a functional component:Destructing the props argument is a super-common React pattern that can clean up your code quite a lot.
The text was updated successfully, but these errors were encountered: