@rc-component/notification
Version:
notification ui component for react
14 lines (13 loc) • 456 B
TypeScript
import * as React from 'react';
export interface NotificationContextProps {
classNames?: {
notice?: string;
list?: string;
};
}
export declare const NotificationContext: React.Context<NotificationContextProps>;
export interface NotificationProviderProps extends NotificationContextProps {
children: React.ReactNode;
}
declare const NotificationProvider: React.FC<NotificationProviderProps>;
export default NotificationProvider;