mirror of
https://github.com/dzeiocom/components.git
synced 2025-06-15 12:09:20 +00:00
18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
import { Meta } from '@storybook/react/types-6-0'
|
|
import React from 'react'
|
|
import { Zap } from 'lucide-react'
|
|
import Component from '.'
|
|
|
|
export default {
|
|
title: 'DZEIO/NotificationManager',
|
|
component: Component
|
|
} as Meta
|
|
|
|
export const Basic = (args: any) => <Component {...args} />
|
|
Basic.args = {
|
|
ttl: 999999999999,
|
|
notifications: [
|
|
'Test',
|
|
'LArge text lorem ipsum dolor sit amet, i dont know what to type yolo :D'
|
|
]
|
|
} |