mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:41:11 +08:00
19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
```js
|
|
// my-component.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './my-component';
|
|
|
|
export default {
|
|
title: 'MyComponent',
|
|
};
|
|
|
|
const Template = ({ propertyA }) => html`<my-component .propertyA=${propertyA}></my-component>`;
|
|
|
|
export const Default = Template.bind({});
|
|
|
|
Default.args = {
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
};
|
|
``` |