Sharkey/packages/frontend/src/components/MkNotification.stories.ts
Acid Chicken (硫酸鶏) 1dfcca7b9c
build(#10336): init
2023-03-19 22:25:06 +09:00

13 lines
300 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import MkNotification from './MkNotification.vue';
const meta = {
title: 'components/MkNotification',
component: MkNotification,
};
export const Default = {
components: {
MkNotification,
},
template: '<MkNotification />',
};
export default meta;