From d09ae9be5a63eab3f7b66d1f8d8d3fbe5b4d6596 Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Tue, 30 Jan 2024 13:44:41 +0200 Subject: [PATCH] Delete FormStepper.stories.ts --- .../FormStepper/FormStepper.stories.ts | 64 ------------------- 1 file changed, 64 deletions(-) delete mode 100644 src/pages/ValidatorOnboarding/FormStepper/FormStepper.stories.ts diff --git a/src/pages/ValidatorOnboarding/FormStepper/FormStepper.stories.ts b/src/pages/ValidatorOnboarding/FormStepper/FormStepper.stories.ts deleted file mode 100644 index a096e8b5..00000000 --- a/src/pages/ValidatorOnboarding/FormStepper/FormStepper.stories.ts +++ /dev/null @@ -1,64 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react' - -import FormStepper from './FormStepper' - -const meta = { - title: 'ValidatorOnboarding/FormStepper', - component: FormStepper, - parameters: { - layout: 'centered', - }, - tags: ['autodocs'], - argTypes: { - activeStep: { - options: [0, 1, 2, 3, 4, 5], - control: { type: 'radio' }, - defaultValue: 0, - }, - }, -} satisfies Meta - -export default meta -type Story = StoryObj - -export const OverviewActive: Story = { - args: { - activeStep: 0, - }, -} - -export const AdvisoriesActive: Story = { - args: { - activeStep: 1, - }, -} - -export const ClientSetupActive: Story = { - args: { - activeStep: 2, - }, -} - -export const ValidatorSetupActive: Story = { - args: { - activeStep: 3, - }, -} - -export const KeyGenerationActive: Story = { - args: { - activeStep: 4, - }, -} - -export const ActivationActive: Story = { - args: { - activeStep: 5, - }, -} - -export const NoActiveStep: Story = { - args: { - activeStep: -1, - }, -}