mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:51:07 +08:00
Add first MDX example for storybook/html
The https://storybook.js.org/docs/7.0/html/writing-docs/mdx page is missing all storybook/html snippets. I thought the `Story` needed a child string, but it actually needs a function that returns a string. While I don't have time to add all the examples now, having at least the first one will help users a ton.
This commit is contained in:
parent
11fcfbea02
commit
1ec448e70b
45
docs/snippets/html/checkbox-story.mdx.mdx
Normal file
45
docs/snippets/html/checkbox-story.mdx.mdx
Normal file
@ -0,0 +1,45 @@
|
||||
```md
|
||||
<!-- Checkbox.stories.mdx -->
|
||||
|
||||
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
||||
|
||||
export const Checkbox = (args) => `<label>
|
||||
${args?.label}
|
||||
<input
|
||||
type="checkbox"
|
||||
${args?.checked ? 'checked' : ''}
|
||||
${args?.appearance ? `class="${args.appearance}"` : ''}
|
||||
/>
|
||||
</label>`;
|
||||
|
||||
<Meta title="MDX/Checkbox" component={Checkbox} />
|
||||
|
||||
# Checkbox
|
||||
|
||||
With `MDX`, we can define a story for `Checkbox` right in the middle of our
|
||||
Markdown documentation.
|
||||
|
||||
<Canvas>
|
||||
<Story
|
||||
name="Unchecked"
|
||||
args={{
|
||||
label: 'Unchecked',
|
||||
}}
|
||||
render={Checkbox} />
|
||||
<Story
|
||||
name="Checked"
|
||||
args={{
|
||||
label: 'Unchecked',
|
||||
checked: true,
|
||||
}}
|
||||
render={Checkbox} />
|
||||
<Story
|
||||
name="Secondary"
|
||||
args={{
|
||||
label: 'Secondary',
|
||||
checked: true,
|
||||
appearance: 'secondary',
|
||||
}}
|
||||
render={Checkbox} />
|
||||
</Canvas>
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user