feat(migrate-panel): create base component and story

This commit is contained in:
RadoslavDimchev 2024-02-19 21:49:04 +02:00 committed by Emil Ivanichkov
parent 836b7e7ed2
commit 4c613c9067
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import type { Meta, StoryObj } from '@storybook/react'
import MigratePanel from './MigratePanel'
const meta = {
title: 'ValidatorManagement/MigratePanel',
component: MigratePanel,
tags: ['autodocs'],
} satisfies Meta<typeof MigratePanel>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}

View File

@ -0,0 +1,7 @@
import { YStack } from 'tamagui'
const MigratePanel = () => {
return <YStack></YStack>
}
export default MigratePanel