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

14 lines
306 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 />',
};
export default meta;