Update svelte-mdx.stories.mdx

This commit is contained in:
Michael Shilman 2022-10-10 11:11:28 +08:00
parent 964c2afa6c
commit bf3e0e4301

View File

@ -8,24 +8,28 @@ import ButtonView from './views/ButtonView.svelte';
## Primary
<Story name="Primary">
{{
Component: ButtonView,
props: {
primary: true,
text: 'Primary text',
},
}}
</Story>
<Canvas>
<Story name="Primary">
{{
Component: ButtonView,
props: {
primary: true,
text: 'Primary text',
},
}}
</Story>
</Canvas>
## Secondary
<Story name="Secondary">
{{
Component: ButtonView,
props: {
primary: false,
text: 'Secondary text',
},
}}
</Story>
<Canvas>
<Story name="Secondary">
{{
Component: ButtonView,
props: {
primary: false,
text: 'Secondary text',
},
}}
</Story>
</Canvas>