Skip to content

Instantly share code, notes, and snippets.

@aiuoe
Created March 9, 2024 17:34
Show Gist options
  • Save aiuoe/95e5440ea5e2db184e62e99aff406854 to your computer and use it in GitHub Desktop.
Save aiuoe/95e5440ea5e2db184e62e99aff406854 to your computer and use it in GitHub Desktop.
JS vanilla hook useState
const useState = (initValue) => {
const state = { value: initValue };
const setState = (updatedValue) => state.value = updatedValue;
return [state, setState];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment