storybook/docs/snippets/common/my-component-story-import-static-asset.js.mdx
2021-01-28 00:11:22 +00:00

7 lines
218 B
Plaintext

```js
// MyComponent.stories.js | MyComponent.stories.ts
// 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';
```