mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
20 lines
383 B
Plaintext
20 lines
383 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import MyComponent from './MyComponent';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
title: 'A story using environment variables inside a .env file',
|
|
};
|
|
|
|
const Template = (args) => <MyComponent {...args} />;
|
|
|
|
export const Default = Template.bind({});
|
|
|
|
Default.args = {
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
};
|
|
``` |