mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:21:06 +08:00
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
emit(HIGHLIGHT, {
|
|
elements: ['.title', '.subtitle'],
|
|
color: 'red',
|
|
style: 'solid', // 'dotted' | 'dashed' | 'solid' | 'double'
|
|
});
|
|
```
|