feat: create story for title logo

This commit is contained in:
RadoslavDimchev 2023-11-06 21:11:12 +02:00
parent eeccf4d30a
commit a6dbd1f2f2
1 changed files with 25 additions and 0 deletions

View File

@ -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<typeof TitleLogo>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
subtitle: 'Node Management Dashboard',
},
}
export const WithoutSubtitle: Story = {
args: {},
}