import { Card } from "./Card"; /** * Cards contain content and actions about a single subject. * * ```ts * import {Card} from "@tsed/react-formio/molecules/card/Card"; * ``` */ export default { title: "Card", component: Card, argTypes: {}, parameters: {} }; export const Sandbox = (args: any) => { return {args.children}; }; Sandbox.args = { label: "label", children: "test" };