Guest User

Untitled

a guest
Mar 1st, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import { store } from ‘react-easy-state’
  2.  
  3. const user = store({
  4. email: ‘’,
  5. password: ‘’,
  6. profile: {},
  7. logout () {
  8. user.profile = {}
  9. }
  10. })
  11.  
  12. export default user
Add Comment
Please, Sign In to add comment