import { FC } from 'react'; import { GetRendererVersion, GetUIVersion, NotificationAlertItem } from '../../../../api'; import { Button, Column, Flex, Grid, LayoutNotificationCredits, LayoutNotificationAlertViewProps, Text } from '../../../../common'; interface NotificationDefaultAlertViewProps extends LayoutNotificationAlertViewProps { item: NotificationAlertItem; } export const NitroSystemAlertView: FC = props => { const { title = 'Nitro Cool UI Edit', onClose = null, ...rest } = props; return ( Nitro React v{ GetUIVersion() } Renderer: v{ GetRendererVersion() }
Cool UI Was created by Wassehk - DuckieTM (Re-Design) - Jonas (Contributing) - Ohlucas (Sunset resources) v1.5.0
); }