12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
![]() |
import { storiesOf } from "@storybook/react";
|
||
|
import * as React from "react";
|
||
|
|
||
|
import Skeleton from "@saleor/components/Skeleton";
|
||
|
import CardDecorator from "../../CardDecorator";
|
||
|
import Decorator from "../../Decorator";
|
||
|
|
||
|
storiesOf("Generics / Skeleton", module)
|
||
|
.addDecorator(CardDecorator)
|
||
|
.addDecorator(Decorator)
|
||
|
.add("default", () => <Skeleton />);
|