feat: create management tabs story
This commit is contained in:
parent
320001e070
commit
7c7582c271
|
@ -0,0 +1,19 @@
|
||||||
|
import type { Meta, StoryObj } from '@storybook/react'
|
||||||
|
|
||||||
|
import ManagementTabs from './ManagementTabs'
|
||||||
|
|
||||||
|
const meta = {
|
||||||
|
title: 'ValidatorManagement/ManagementTabs',
|
||||||
|
component: ManagementTabs,
|
||||||
|
parameters: {
|
||||||
|
layout: 'centered',
|
||||||
|
},
|
||||||
|
tags: ['autodocs'],
|
||||||
|
} satisfies Meta<typeof ManagementTabs>
|
||||||
|
|
||||||
|
export default meta
|
||||||
|
type Story = StoryObj<typeof meta>
|
||||||
|
|
||||||
|
export const Page: Story = {
|
||||||
|
args: {},
|
||||||
|
}
|
Loading…
Reference in New Issue