mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
26 lines
516 B
Plaintext
26 lines
516 B
Plaintext
```js
|
|
// card-component.stories.js
|
|
|
|
import { html } from 'lit';
|
|
import { useChannel } from '@storybook/preview-api';
|
|
import { HIGHLIGHT, RESET_HIGHLIGHT } from '@storybook/addon-highlight';
|
|
import './card-component';
|
|
|
|
export default {
|
|
title: 'Card',
|
|
};
|
|
|
|
export const Default: Story = (args) => ({
|
|
template: html`<sb-card></sb-card>`,
|
|
});
|
|
Default.decorators = [
|
|
(story) => {
|
|
const emit = useChannel({});
|
|
emit(HIGHLIGHT, {
|
|
elements: ['.title', '.subtitle'],
|
|
});
|
|
return story();
|
|
},
|
|
];
|
|
```
|