import type { Meta, StoryObj } from '@storybook/vue3'; import { PrimaryButton, SecondaryButton, Topbar } from '~/components'; type Story = StoryObj; const meta: Meta = { title: 'Application/Topbar', component: Topbar, tags: ['topbar', 'bar', 'header', 'nav'], argTypes: { start: { control: false }, end: { control: false }, }, args: { }, }; export const Default: Story = { render: args => ({ components: { Topbar, SecondaryButton, PrimaryButton }, setup() { return { args }; }, template: ` `, }), }; export default meta;