mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
390 B
TypeScript
21 lines
390 B
TypeScript
import { SBComp } from '#types/SBComp'
|
|
|
|
import TopMenu from './TopMenu.vue'
|
|
|
|
import type { Meta, StoryObj } from '@storybook/vue3'
|
|
|
|
const meta = {
|
|
title: 'Menu/TopMenu',
|
|
component: TopMenu as SBComp,
|
|
tags: ['autodocs'],
|
|
argTypes: {},
|
|
args: {},
|
|
} satisfies Meta<typeof TopMenu>
|
|
|
|
export default meta
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Example: Story = {
|
|
args: {},
|
|
}
|