Create ValidatorInstall.stories.tsx
This commit is contained in:
parent
496614cb0e
commit
b24259c3ab
|
@ -0,0 +1,20 @@
|
||||||
|
import type { Meta, StoryObj } from '@storybook/react'
|
||||||
|
import ValidatorSetupInstall from './ValidatorInstall'
|
||||||
|
|
||||||
|
|
||||||
|
const meta = {
|
||||||
|
title: 'ValidatorOnboarding/ValidatorSetupInstall',
|
||||||
|
component: ValidatorSetupInstall,
|
||||||
|
parameters: {
|
||||||
|
layout: 'centered',
|
||||||
|
},
|
||||||
|
tags: ['autodocs'],
|
||||||
|
argTypes: {},
|
||||||
|
} satisfies Meta<typeof ValidatorSetupInstall>
|
||||||
|
|
||||||
|
export default meta
|
||||||
|
type Story = StoryObj<typeof meta>
|
||||||
|
|
||||||
|
export const Page: Story = {
|
||||||
|
args: {},
|
||||||
|
}
|
Loading…
Reference in New Issue