storybook/docs/snippets/common/my-component-story-import-static-asset.js.mdx
2021-11-06 03:20:29 +00:00

7 lines
204 B
Plaintext

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