UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

15 lines 615 B
import React from "react"; import Card from "./Card.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; import { InfoStatus } from "./InfoStatus.js"; export default { component: InfoStatus, title: "Components/InfoStatus", decorators: [ReportDecorator], }; export const infoStatus = () => (React.createElement(Card, null, React.createElement(InfoStatus, { msg: React.createElement(React.Fragment, null, "These are ", React.createElement("b", null, "draft"), " reports. Please report any issues.") }))); //# sourceMappingURL=InfoStatus.stories.js.map