Skip to content

Commit

Permalink
fix: add missing imports to Storybook pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Sep 15, 2021
1 parent 43e54b8 commit 3b501c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/form-label/bem.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Copyright (c) 2021 Robbert Broersma

import { Meta, Story, Canvas, ArgsTable } from "@storybook/addon-docs";
import "./bem.scss";
import { FormLabel } from "./bem";
import { defaultArgs, FormLabel } from "./bem";

<Meta
title="CSS Component/Form label"
Expand Down
12 changes: 6 additions & 6 deletions components/select/bem.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { defaultArgs, exampleOptions, Select } from "./bem";
}}
parameters={{
docs: {
transformSource: (_src, { args }) => Template(args),
transformSource: (_src, { args }) => Select(args),
},
status: {
type: "WORK IN PROGRESS",
Expand All @@ -57,7 +57,7 @@ Styling via the `<select>` element:
options: exampleOptions,
}}
>
{Template.bind({})}
{Select.bind({})}
</Story>
</Canvas>

Expand All @@ -82,7 +82,7 @@ Styling via the `<select>` element:
},
}}
>
{Template.bind({})}
{Select.bind({})}
</Story>
</Canvas>

Expand All @@ -103,7 +103,7 @@ Styling via the `<select>` element:
},
}}
>
{Template.bind({})}
{Select.bind({})}
</Story>
</Canvas>

Expand All @@ -124,7 +124,7 @@ Styling via the `<select>` element:
},
}}
>
{Template.bind({})}
{Select.bind({})}
</Story>
</Canvas>

Expand All @@ -147,6 +147,6 @@ Styling via the `<select>` element:
},
}}
>
{Template.bind({})}
{Select.bind({})}
</Story>
</Canvas>

0 comments on commit 3b501c8

Please sign in to comment.