saleor-dashboard/src/storybook/stories/components/ExternalLink.tsx

19 lines
587 B
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import { storiesOf } from "@storybook/react";
import * as React from "react";
import ExternalLink from "@saleor/components/ExternalLink";
import CardDecorator from "../../CardDecorator";
import Decorator from "../../Decorator";
storiesOf("Generics / External Link", module)
.addDecorator(CardDecorator)
.addDecorator(Decorator)
.add("default", () => (
<ExternalLink href="http://www.google.com">Link to google.com</ExternalLink>
))
.add("new tab", () => (
<ExternalLink href="http://www.google.com" target="_blank">
Link to google.com
</ExternalLink>
));