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