Skip to content

Instantly share code, notes, and snippets.

@behnammodi
Created September 7, 2019 07:17
Show Gist options
  • Save behnammodi/a2e43ddde7f0a287ea25e76038850416 to your computer and use it in GitHub Desktop.
Save behnammodi/a2e43ddde7f0a287ea25e76038850416 to your computer and use it in GitHub Desktop.
function useState(initialState) {
var _state = initialState;
function setState(value) {
_state = value;
}
function getState() {
return _state;
}
getState.prototype.valueOf = () => _state;
return [new getState(), setState];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment