UNPKG

611 BTypeScriptView Raw
1import { storiesOf } from "@storybook/react";
2import * as React from "react";
3import { Card } from "../components/Card";
4const {Meta} = Card;
5storiesOf("Card", module).add("Examples", () => (
6 <div style={{width: "100px;"}}>
7 <Card>
8 <Meta
9 title="Join the discussion"
10 description="We have a Slack workspace set up with multiple channels that will allow participants to communicate with their team members and the greater D4SD community. When you register online, you will be connected to our network of resources based on how you want to participate."
11 />
12 </Card>
13 </div>
14));