import React from "react"; import { ReportError } from "./ReportError.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; import Card from "./Card.js"; export default { component: ReportError, title: "Components/ReportError", decorators: [ReportDecorator], }; const ThrowComponent = () => { throw new Error("error!"); return <>; }; export const throws = () => ( ); export const okay = () => (

This message should display without error

);