storybook/docs/snippets/common/component-story-custom-source.js.mdx
Giannis Koutsaftakis 64520024cb
Removed semicolon
Semicolon breaks the code in this snippet.
2020-10-07 00:08:32 +03:00

14 lines
214 B
Plaintext

```js
// Button.stories.js
export const CustomSource = () => Template.bind({});
CustomSource.parameters = {
docs: {
source: {
code: 'Some custom string here'
}
},
};
```