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

19 lines
582 B
TypeScript
Raw Normal View History

import ExternalLink from "@saleor/components/ExternalLink";
2019-06-19 14:40:52 +00:00
import { storiesOf } from "@storybook/react";
2019-08-09 10:26:22 +00:00
import React from "react";
2019-06-19 14:40:52 +00:00
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>
));