UNPKG

amplify-material-ui

Version:

A Material-UI based implementation of aws amplify

7 lines (6 loc) 299 B
import * as React from 'react'; import { NotificationState } from './use-notification-context'; export interface NotificationProviderProps { onShowNotification?: (message: NotificationState) => NotificationState; } export declare const NotificationProvider: React.FC<NotificationProviderProps>;