mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 03:11:49 +08:00
21 lines
514 B
Plaintext
21 lines
514 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story, Canvas } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './my-component.component';
|
|
|
|
<Meta title='A MDX story using environment variables inside a .env file' component={MyComponent}/>
|
|
|
|
export const Template = (args) => ({ props: args });
|
|
|
|
<Canvas>
|
|
<Story
|
|
name='A MDX story using environment variables inside a .env file'
|
|
args={{
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
</Canvas>
|
|
``` |