Last active
February 1, 2017 14:50
-
-
Save xaviervia/f5b9b8715bfa0f116c9213be306dd86e to your computer and use it in GitHub Desktop.
How we almost reinvent the Redux Store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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