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