mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-10 10:26:53 +00:00
feat: create story for copy pasted notification
This commit is contained in:
parent
7fe692bc19
commit
eb8605980d
@ -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<typeof CopyPastedNotification>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Default: Story = {
|
||||
args: {},
|
||||
}
|
||||
|
||||
export const SmallScreen: Story = {
|
||||
args: {
|
||||
isSmallScreen: true,
|
||||
},
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user