mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
```js
|
|
// MyComponent.stories.js|jsx|mjs|ts|tsx
|
|
|
|
// This will include './static/image.png' in the bundle.
|
|
// And return a path to be included in a src attribute
|
|
import imageFile from './static/image.png';
|
|
```
|