fbredius/storybook

View on GitHub
docs/snippets/react/my-component-with-env-variables.ts.mdx

Summary

Maintainability
Test Coverage
```ts
// MyComponent.stories.ts| tsx

import React from 'react';

import { ComponentStory, ComponentMeta } from '@storybook/react';

import { MyComponent } from './MyComponent';

export default {
  /* 👇 The title prop is optional.
  * See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
  * to learn how to generate automatic titles
  */
  title: 'MyComponent',
  component: MyComponent,
} as ComponentMeta<typeof MyComponent>;

const Template: ComponentStory<typeof MyComponent> = (args) => <MyComponent {...args} />;

export const ExampleStory = Template.bind({});
ExampleStory.args = {
  propertyA: process.env.STORYBOOK_DATA_KEY,
};
```