Skip to content

Instantly share code, notes, and snippets.

@xaviervia
Last active February 1, 2017 14:50
Show Gist options
  • Save xaviervia/f5b9b8715bfa0f116c9213be306dd86e to your computer and use it in GitHub Desktop.
Save xaviervia/f5b9b8715bfa0f116c9213be306dd86e to your computer and use it in GitHub Desktop.
How we almost reinvent the Redux Store
function CustomCheckbox ({ onClick, checked }) {
return <div onClick={onClick}>
{checked ? 'Checked' : 'Not checked'}
</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment