UNPKG

@shopify/shop-minis-react

Version:

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

17 lines (12 loc) 419 B
import {ShopActions} from '@shopify/shop-minis-platform/actions' import {useShopActions} from '../../internal/useShopActions' interface UseErrorScreenReturns { /** * Show an error screen with the given error message. */ showErrorScreen: ShopActions['showErrorScreen'] } export const useErrorScreen = (): UseErrorScreenReturns => { const {showErrorScreen} = useShopActions() return {showErrorScreen} }