feat(default-panel): create story

This commit is contained in:
RadoslavDimchev 2024-02-19 21:44:00 +02:00 committed by Emil Ivanichkov
parent 7e5d73e4f9
commit 6be7c1cf17
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import type { Meta, StoryObj } from '@storybook/react'
import RightManageSettings from './RightManageSettings'
const meta = {
title: 'ValidatorManagement/RightManageSettings',
component: RightManageSettings,
tags: ['autodocs'],
} satisfies Meta<typeof RightManageSettings>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}