Sharkey/packages/frontend/src/components/MkImgWithBlurhash.stories.ts

17 lines
359 B
TypeScript
Raw Normal View History

2023-03-19 22:22:14 +09:00
import { Meta, Story } from '@storybook/vue3';
import MkImgWithBlurhash from './MkImgWithBlurhash.vue';
const meta = {
title: 'components/MkImgWithBlurhash',
component: MkImgWithBlurhash,
};
export const Default = {
components: {
MkImgWithBlurhash,
},
template: '<MkImgWithBlurhash />',
parameters: {
layout: 'centered',
},
2023-03-19 22:22:14 +09:00
};
export default meta;