import React from "react"; import Card from "./Card.js"; import { Skeleton } from "./Skeleton.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; export default { component: Skeleton, title: "Components/Skeleton", decorators: [ReportDecorator], }; export const small = () => ( ); export const larger = () => ( ); export const custom = () => (
);