Create ClientAddressRow.stories.tsx

This commit is contained in:
Hristo Nedelkov 2023-09-22 17:35:16 +03:00
parent 6cc33d598e
commit f6de3a708c
1 changed files with 21 additions and 0 deletions

View File

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