import { Meta, StoryObj } from '@storybook/vue3'; import MkImgWithBlurhash from './MkImgWithBlurhash.vue'; const meta = { title: 'components/MkImgWithBlurhash', component: MkImgWithBlurhash, } satisfies Meta; export const Default = { render(args, { argTypes }) { return { components: { MkImgWithBlurhash, }, props: Object.keys(argTypes), template: '', }; }, parameters: { layout: 'centered', }, } satisfies StoryObj; export default meta;