mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
10 lines
382 B
JavaScript
10 lines
382 B
JavaScript
import { withKnobs } from "@storybook/addon-knobs";
|
|
import Component from "./StructuredList.Story.svelte";
|
|
|
|
export default { title: "StructuredList", decorators: [withKnobs] };
|
|
|
|
export const Default = () => ({ Component });
|
|
|
|
export const Selection = () => ({ Component, props: { story: "selection" } });
|
|
|
|
export const Skeleton = () => ({ Component, props: { story: "skeleton" } });
|