Skip to content

Instantly share code, notes, and snippets.

@quisido
Created December 3, 2018 15:05
Show Gist options
  • Save quisido/e6d94e6a6c366f348ce733279fa59f29 to your computer and use it in GitHub Desktop.
Save quisido/e6d94e6a6c366f348ce733279fa59f29 to your computer and use it in GitHub Desktop.
Manage global state with React Hooks
const MyComponent = () => {
const [ global, setGlobal ] = useGlobal();
if (global.x) {
return global.x;
}
return global.y;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment