UNPKG

@commercetools-docs/gatsby-theme-api-docs

Version:
13 lines (9 loc) 320 B
import React from 'react'; import { ContentNotifications } from '@commercetools-docs/ui-kit'; function reportError(errorMsg) { if (process.env.NODE_ENV !== 'production') { return <ContentNotifications.Error>{errorMsg}</ContentNotifications.Error>; } throw new Error(errorMsg); } export default reportError;