UNPKG

@shopify/shop-minis-react

Version:

React component library for Shopify Shop Minis with Tailwind CSS v4 support (source-only, requires TypeScript)

16 lines (12 loc) 385 B
import {useShopActions} from '../../internal/useShopActions' import {ShopActions} from '../../types' interface UseErrorToastReturns { /** * Show an error toast with the given error message. */ showErrorToast: ShopActions['showErrorToast'] } export const useErrorToast = (): UseErrorToastReturns => { const {showErrorToast} = useShopActions() return {showErrorToast} }