@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
11 lines • 412 B
JavaScript
import React from "react";
import Card from "./Card.js";
import ReportDecorator from "./storybook/ReportDecorator.js";
export default {
component: Card,
title: "Components/Card/Card",
decorators: [ReportDecorator],
};
export const simple = () => (React.createElement(Card, { title: "Card Title" },
React.createElement("p", null, "Body text goes here.")));
//# sourceMappingURL=Card.stories.js.map