diff --git a/src/components/General/TitleLogo.stories.ts b/src/components/General/TitleLogo.stories.ts new file mode 100644 index 00000000..8064f0c5 --- /dev/null +++ b/src/components/General/TitleLogo.stories.ts @@ -0,0 +1,25 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import TitleLogo from './TitleLogo' + +const meta = { + title: 'General/TitleLogo', + component: TitleLogo, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: { + subtitle: 'Node Management Dashboard', + }, +} + +export const WithoutSubtitle: Story = { + args: {}, +}