mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
20 lines
311 B
Plaintext
20 lines
311 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
export const CustomSource = {
|
|
parameters: {
|
|
docs: {
|
|
source: {
|
|
code: 'Some custom string here',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
```
|