feat(deposits): create story for chain parity
This commit is contained in:
parent
9dce578fa5
commit
6597e64011
|
@ -0,0 +1,19 @@
|
|||
import type { Meta, StoryObj } from '@storybook/react'
|
||||
|
||||
import ChainParity from './ChainParity'
|
||||
|
||||
const meta = {
|
||||
title: 'ValidatorOnboarding/ChainParity',
|
||||
component: ChainParity,
|
||||
parameters: {
|
||||
layout: 'centered',
|
||||
},
|
||||
tags: ['autodocs'],
|
||||
} satisfies Meta<typeof ChainParity>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Default: Story = {
|
||||
args: {},
|
||||
}
|
Loading…
Reference in New Issue