TypeScript React + Material-UI template project working with SmartERP APIs
npm install @etsoo/notificationmuUsing npm:
``bash`
$ npm install @etsoo/notificationui
Using yarn:
`bash`
$ yarn add @etsoo/notificationui
ts
/**
* Notification Display properties
*/
export interface NotificationDisplayProps {
/**
* Style class name
*/
className?: string; /**
* Create notification container
* @param align Align
* @param children Children
*/
createContainer(
align: NotificationAlign,
children: React.ReactNode[]
): React.ReactNode;
/**
* Each notification style class name
*/
itemClassName?: string;
}
`NotificationReact
Abstract implement of ReactNode UI.
`ts
abstract class NotificationReact extends Notification
``