storybook/docs/snippets/common/component-story-custom-source.js.mdx
2021-06-28 23:00:33 +01:00

13 lines
253 B
Plaintext

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