mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
14 lines
192 B
Plaintext
14 lines
192 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export const CustomSource = () => Template.bind({});
|
|
|
|
CustomSource.parameters = {
|
|
docs: {
|
|
source: {
|
|
code: 'Some custom string here',
|
|
},
|
|
},
|
|
};
|
|
```
|