UNPKG

@overse/ui-extensions-utils

Version:

Utility functions for Shopify UI Extensions

13 lines (10 loc) 220 B
import { useState } from 'react'; function useFetchState() { const stateArray = useState({ data: null, loading: true, error: null, }); return stateArray; } export { useFetchState };