UNPKG

mui-alert-provider

Version:

Make your alerts float! A lightweight provider for Material UI’s Alert that fits seamlessly into any web UI.

7 lines (6 loc) 278 B
import React from "react"; import { AlertContextType, AlertProviderProps } from "./types"; declare const AlertContext: React.Context<AlertContextType | undefined>; declare const AlertProvider: React.FC<AlertProviderProps>; export { AlertContext }; export default AlertProvider;