feat: create story for overview

This commit is contained in:
RadoslavDimchev 2023-08-24 11:41:58 +03:00
parent b629168250
commit 1b74832642
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
import type { Meta, StoryObj } from '@storybook/react'
import { withRouter } from 'storybook-addon-react-router-v6'
import Overview from './Overview'
const meta = {
title: 'ValidatorOnboarding/Overview',
component: Overview,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
argTypes: {},
decorators: [withRouter],
} satisfies Meta<typeof Overview>
export default meta
type Story = StoryObj<typeof meta>
export const Page: Story = {
args: {},
}