feat(default-panel): create story
This commit is contained in:
parent
7e5d73e4f9
commit
6be7c1cf17
|
@ -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: {},
|
||||
}
|
Loading…
Reference in New Issue