summaryrefslogtreecommitdiffstats
path: root/client/src/admin/api/getUser.js
blob: 697702d9098d6274703952e9f294505771656afb (plain) (blame)
1
2
3
4
5
6
export default (setUser) => (
  fetch('/api/user/me')
    .then(res => res.json())
    .then(data => setUser(data))
    .catch(() => {})
);