mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-20 15:18:33 +00:00
feat(migrate-panel): create base component and story
This commit is contained in:
parent
836b7e7ed2
commit
4c613c9067
@ -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: {},
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
import { YStack } from 'tamagui'
|
||||||
|
|
||||||
|
const MigratePanel = () => {
|
||||||
|
return <YStack></YStack>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default MigratePanel
|
Loading…
x
Reference in New Issue
Block a user