UNPKG

@the-overse/ui-extensions-utils

Version:

Utility functions for Shopify UI Extensions

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