feat(exit-panel): create story

This commit is contained in:
RadoslavDimchev 2024-03-06 08:55:26 +02:00 committed by Emil Ivanichkov
parent 5114273af9
commit 99980aaf35
1 changed files with 16 additions and 0 deletions

View File

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