UNPKG

3box-react-hooks

Version:
12 lines (8 loc) 302 B
import { getProfile, getSpace } from '3box/lib/api'; import { useAsync } from './helperHooks'; export const useProfile = (...args) => { return useAsync(() => getProfile(...args), [...args]); }; export const usePublicSpace = (...args) => { return useAsync(() => getSpace(...args), [...args]); };