From eb8605980dae7ed67a3e21af211e324559220859 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 26 Jan 2024 10:06:03 +0200 Subject: [PATCH] feat: create story for copy pasted notification --- .../CopyPastedNotification.stories.ts | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/pages/ValidatorOnboarding/CopyPastedNotification.stories.ts diff --git a/src/pages/ValidatorOnboarding/CopyPastedNotification.stories.ts b/src/pages/ValidatorOnboarding/CopyPastedNotification.stories.ts new file mode 100644 index 00000000..a6cea657 --- /dev/null +++ b/src/pages/ValidatorOnboarding/CopyPastedNotification.stories.ts @@ -0,0 +1,25 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import CopyPastedNotification from './CopyPastedNotification' + +const meta = { + title: 'ValidatorOnboarding/CopyPastedNotification', + component: CopyPastedNotification, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: {}, +} + +export const SmallScreen: Story = { + args: { + isSmallScreen: true, + }, +}