import type { Meta } from '@storybook/vue3'; import Note from './Note.vue'; const meta: Meta = { title: 'Application/Note', component: Note, tags: ['application', 'display', 'note'], argTypes: { icon: { table: { disable: true } }, content: { table: { disable: true } }, }, }; export default meta; export const Default = { args: { }, };