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