UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

13 lines 547 B
import React from "react"; import Card from "./Card.js"; import { KeySection } from "./KeySection.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; export default { component: KeySection, title: "Components/KeySection", decorators: [ReportDecorator], }; export const keySection = () => (React.createElement(Card, { title: "Card Title" }, React.createElement(KeySection, null, React.createElement("p", null, "KeySection is inside the card and stands out.")))); //# sourceMappingURL=KeySection.stories.js.map