import type { Meta, StoryObj } from '@storybook/vue3' import StoryComponent from './NovuNotificationBell.client.vue' const meta: Meta = { title: 'NovuNotificationBell.client', component: StoryComponent, render: (args) => ({ components: { StoryComponent }, setup() { return { args } }, template: '' }) } export default meta type Story = StoryObj export const Primary: Story = { args: {} }