```md import { Meta, Story } from '@storybook/addon-docs'; import imageFile from './static/image.png' export const image = { src: imageFile, alt: "my image", }; {() => { return { setup() { return { image }; }, template: ``, }; }} ```