Skip to content

Instantly share code, notes, and snippets.

@adamkleingit
Last active July 9, 2019 10:19
Show Gist options
  • Save adamkleingit/1c419a76eabd6355e9844016f98a7755 to your computer and use it in GitHub Desktop.
Save adamkleingit/1c419a76eabd6355e9844016f98a7755 to your computer and use it in GitHub Desktop.
Define store
import {createStore} from 'reusable';
export const useCurrentUser = createStore(() => {
const [user, setUser] = useState({...});
...
return {
user,
...
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment