fix: remove wrong copy pasted notification story

This commit is contained in:
RadoslavDimchev 2024-01-26 10:10:03 +02:00 committed by Radoslav Dimchev
parent eb8605980d
commit c800721e78

View File

@ -1,25 +0,0 @@
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<typeof CopyPastedNotification>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}
export const SmallScreen: Story = {
args: {
isSmallScreen: true,
},
}