Last active
July 9, 2019 10:19
-
-
Save adamkleingit/1c419a76eabd6355e9844016f98a7755 to your computer and use it in GitHub Desktop.
Define store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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