Skip to content

Instantly share code, notes, and snippets.

@aleksnick
Last active March 23, 2023 09:00
Show Gist options
  • Save aleksnick/494f66e2851bc5483e50b029444d3c82 to your computer and use it in GitHub Desktop.
Save aleksnick/494f66e2851bc5483e50b029444d3c82 to your computer and use it in GitHub Desktop.
About hooks
function TestComponent({ obj }) {
if (!obj.someField) {
return null;
}
const value = useSelector(customExpensiveSelector(obj.someField));
return (
<div>{value}</div>;
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment