Create storybook for stepper

This commit is contained in:
Hristo Nedelkov 2023-08-23 13:12:27 +03:00
parent 2dd9f32a78
commit 4ac05ea697
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import type { Meta, StoryObj } from '@storybook/react'
import StepperForm from './Stepper'
const meta = {
title: 'ValidatorOnboarding/Stepper',
component: StepperForm,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
argTypes: {},
} satisfies Meta<typeof StepperForm>
export default meta
type Story = StoryObj<typeof meta>
export const Stepper: Story = {
args: {},
}