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