storybook/docs/snippets/react/my-component-with-env-variables.js.mdx
2022-11-17 16:33:22 +01:00

21 lines
436 B
Plaintext

```js
// MyComponent.stories.js|jsx
import { MyComponent } from './MyComponent';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'MyComponent',
component: MyComponent,
};
export const ExampleStory = {
args: {
propertyA: process.env.STORYBOOK_DATA_KEY,
},
};
```