storybook/docs/snippets/common/my-component-story-import-static-asset.js.mdx
2020-08-14 21:46:15 +01:00

7 lines
193 B
Plaintext

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