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

17 lines
347 B
TypeScript
Raw Normal View History

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