Last active
November 28, 2017 09:41
-
-
Save gaperton/1a9d498ad93a5561d07b007b26018e6c to your computer and use it in GitHub Desktop.
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 linkState( component, attr ){ | |
return { | |
value : component.state[ attr ], | |
set( x ){ | |
component.setState({ [ attr ] : x }); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment