mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
15 lines
234 B
Plaintext
15 lines
234 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
export default {
|
|
component: 'my-component',
|
|
};
|
|
|
|
export const ExampleStory = {
|
|
args: {
|
|
propertyA: import.meta.env.STORYBOOK_DATA_KEY,
|
|
propertyB: import.meta.env.VITE_CUSTOM_VAR,
|
|
},
|
|
};
|
|
```
|