import type { Meta, StoryObj } from '@storybook/vue3'; import { ActionBar, PrimaryButton, TertiaryButton } from '~/components'; type Story = StoryObj; const meta: Meta = { title: 'Application/ActionBar', component: ActionBar, tags: ['action bar', 'actions row', 'bar'], argTypes: { default: { control: false }, }, }; export const Default: Story = { render: args => ({ components: { ActionBar, PrimaryButton, TertiaryButton }, setup() { return { args }; }, template: ` Cancel Save `, }), }; export default meta;