mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
42 lines
684 B
Plaintext
42 lines
684 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
// The render function is a framework specific construct to define how the story should render
|
|
|
|
export const Primary = {
|
|
render: () => ({
|
|
Component: Button,
|
|
props: {
|
|
backgroundColor: '#ff0',
|
|
label: 'Button',
|
|
},
|
|
}),
|
|
};
|
|
|
|
export const Secondary = {
|
|
render: () => ({
|
|
Component: Button,
|
|
props: {
|
|
backgroundColor: '#ff0',
|
|
label: '😄👍😍💯',
|
|
},
|
|
}),
|
|
};
|
|
|
|
export const Tertiary = {
|
|
render: () => ({
|
|
Component: Button,
|
|
props: {
|
|
backgroundColor: '#ff0',
|
|
label: '📚📕📈🤓',
|
|
},
|
|
}),
|
|
};
|
|
```
|