feat: create management tabs story

This commit is contained in:
RadoslavDimchev 2023-11-08 00:06:48 +02:00
parent 320001e070
commit 7c7582c271
1 changed files with 19 additions and 0 deletions

View File

@ -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: {},
}