Skip to content

Instantly share code, notes, and snippets.

@dominictobias
Last active January 29, 2020 15:38
Show Gist options
  • Save dominictobias/ca14de2e84934818e0d404dcd5f8a3b3 to your computer and use it in GitHub Desktop.
Save dominictobias/ca14de2e84934818e0d404dcd5f8a3b3 to your computer and use it in GitHub Desktop.
App using useGlobalState
export default function App() {
const [theme, dispatch] = useGlobalState(appState, state => state.theme);
return (
<div style={{ background: theme.background }}>
<button onClick={() => dispatch('toggleTheme')}>Toggle theme</button>
<p style={{ color: theme.text }}>
You're enjoying the {theme.name} theme
</p>
</div>
);
}
@dominictobias
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment