storybook/docs/snippets/common/my-component-env-var-config.js.mdx
2023-05-25 21:04:33 +01:00

16 lines
219 B
Plaintext

```js
// MyComponent.stories.js|jsx
import { MyComponent } from './MyComponent';
export default {
component: MyComponent,
};
export const Default = {
args: {
exampleProp: process.env.EXAMPLE_VAR,
},
};
```