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