mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
28 lines
641 B
Plaintext
28 lines
641 B
Plaintext
```js
|
|
// Card.stories.js|jsx
|
|
|
|
import React, { useEffect } from 'react';
|
|
import { useChannel } from '@storybook/addons';
|
|
import { HIGHLIGHT, RESET_HIGHLIGHT } from '@storybook/addon-highlight';
|
|
import { Card } form './Card';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Card',
|
|
component: Card
|
|
};
|
|
|
|
export const Default = () => <Card />;
|
|
Default.decorators = [
|
|
(storyFn) => {
|
|
emit(HIGHLIGHT, {
|
|
elements: ['.title', '.subtitle'],
|
|
});
|
|
return storyFn();
|
|
},
|
|
];
|
|
```
|