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