docs: add missing web components snippets for env variable section

This commit is contained in:
Gaëtan Maisse 2021-03-14 14:52:47 +01:00
parent 86dcf1c1e1
commit 29c2285cf4
No known key found for this signature in database
GPG Key ID: D934C0EF3714A8A8
2 changed files with 21 additions and 1 deletions

View File

@ -49,6 +49,7 @@ Then you can access this environment variable anywhere, even within your stories
'vue/my-component-with-env-variables.2.js.mdx',
'vue/my-component-with-env-variables.3.js.mdx',
'angular/my-component-with-env-variables.ts.mdx',
'web-components/my-component-with-env-variables.js.mdx',
]}
/>
@ -76,4 +77,4 @@ The table below lists the available options:
<div class="aside">
Note: By default Storybook will open a new Chrome window as part of its startup process. If you don't have Chrome installed, make sure to include one of the following options, or set your default browser accordingly.
</div>
</div>

View File

@ -0,0 +1,19 @@
```js
// my-component.stories.js
import { html } from 'lit-html';
import './my-component';
export default {
title: 'A story using environment variables inside a .env file',
};
const Template = ({ propertyA }) => html`<my-component .propertyA=${propertyA}></my-component>`;
export const Default = Template.bind({});
Default.args = {
propertyA: process.env.STORYBOOK_DATA_KEY,
};
```