diff --git a/src/pages/ValidatorOnboarding/ContinueButton.stories.ts b/src/pages/ValidatorOnboarding/ContinueButton.stories.ts new file mode 100644 index 00000000..b7eabdba --- /dev/null +++ b/src/pages/ValidatorOnboarding/ContinueButton.stories.ts @@ -0,0 +1,33 @@ +import type { Meta, StoryObj } from '@storybook/react' +import { withRouter } from 'storybook-addon-react-router-v6' + +import ContinueButton from './ContinueButton' + +const meta = { + title: 'ValidatorOnboarding/ContinueButton', + component: ContinueButton, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], + decorators: [withRouter], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: { + continueHandler: () => {}, + activeStep: 0, + isConfirmPhraseStage: false, + }, +} + +export const Disabled: Story = { + args: { + continueHandler: () => {}, + activeStep: 0, + isConfirmPhraseStage: true, + }, +}