Skip to content

Instantly share code, notes, and snippets.

@Pyrolistical
Last active October 4, 2021 00:08
Show Gist options
  • Save Pyrolistical/8d1c27df0afa1cee88f1fc4da6c93090 to your computer and use it in GitHub Desktop.
Save Pyrolistical/8d1c27df0afa1cee88f1fc4da6c93090 to your computer and use it in GitHub Desktop.
// BAD
export default ({ count }) => {
const Label = () => {
return <code>{count}</code>;
};
return <Label />;
};
// GOOD
const Label = ({ count }) => {
return <code>{count}</code>;
};
export default ({ count }) => {
return <Label count={count} />;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment