Skip to content

Instantly share code, notes, and snippets.

@oney
Created June 3, 2022 08:34
Show Gist options
  • Save oney/b810ae9a1474f203e3ddd589a0f5cbe3 to your computer and use it in GitHub Desktop.
Save oney/b810ae9a1474f203e3ddd589a0f5cbe3 to your computer and use it in GitHub Desktop.
function Chat({onOdd, onEven}) {
const [text, setText] = useState('');
return <SendButton
onClick={text.length % 2 ? onEven : onOdd}
// 😚 SendButton won't re-render
/>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment