storybook/docs/snippets/common/my-component-story-import-static-asset.js.mdx
2023-06-19 12:03:40 +10:00

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';
```