storybook/docs/snippets/web-components/my-component-with-env-variables.js.mdx
2021-11-09 01:41:54 +00:00

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,
};
```