From c30a643b7b71b13f62d8d3b1960578c68f52f63f Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Tue, 20 Feb 2024 12:19:42 +0200 Subject: [PATCH] feat(panel-wrapper): create story with examples --- .../Panels/PanelWrapper.stories.tsx | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/PanelWrapper.stories.tsx diff --git a/src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/PanelWrapper.stories.tsx b/src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/PanelWrapper.stories.tsx new file mode 100644 index 00000000..e23385b8 --- /dev/null +++ b/src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/PanelWrapper.stories.tsx @@ -0,0 +1,26 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import PanelWrapper from './PanelWrapper' +import MigratePanel from './MigratePanel' +import DepositPanel from './DepositPanel' + +const meta = { + title: 'ValidatorManagement/PanelWrapper', + component: PanelWrapper, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const WrappedMigratePanel: Story = { + args: { + children: , + }, +} + +export const WrappedDepositPanel: Story = { + args: { + children: , + }, +}