NotificationUI
TypeScript abstract notification component of React, implemented from https://github.com/ETSOO/NotificationBase. Applied Material-UI version: https://github.com/ETSOO/NotificationMU
Installing
Using npm:
$ npm install @etsoo/notificationui
Using yarn:
$ yarn add @etsoo/notificationui
NotificationDisplay
Notification display component of React version.
Properties:
export interface NotificationDisplayProps {
className?: string;
createContainer(
align: NotificationAlign,
children: React.ReactNode[]
): React.ReactNode;
itemClassName?: string;
}
NotificationReact
Abstract implement of ReactNode UI.
abstract class NotificationReact extends Notification<React.ReactNode>