@makerinc/react-sdk
    Preparing search index...

    Interface UseProductResult

    Query result for single product fetches Unwraps array response to provide direct product access

    interface UseProductResult {
        error?: Error;
        isError: boolean;
        isLoading: boolean;
        product?: Product;
    }
    Index

    Properties

    error?: Error
    isError: boolean
    isLoading: boolean
    product?: Product