@shopify/polaris
Version:
Shopify’s product component library
10 lines (7 loc) • 396 B
JavaScript
class MissingAppProviderError extends Error {
constructor(message = '') {
super("".concat(message ? "".concat(message, " ") : message, "Your application must be wrapped in an <AppProvider> component. See https://polaris.shopify.com/components/structure/app-provider for implementation instructions."));
this.name = 'MissingAppProviderError';
}
}
export { MissingAppProviderError };