UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

13 lines (12 loc) 652 B
import { FC } from 'react'; import type { CompoundProps, Props } from './NotificationSystem.types'; import 'react-toastify/dist/ReactToastify.css'; import './NotificationSystem.style.scss'; /** * The `<NotificationSystem />` component allows consumers to trigger notifications on the defined position on the screen. * * This is a component written in the compound component pattern way, which means utils to trigger a notification for example * are exposed on the component directly, like `NotificationSystem.notify` or `NotificationSystem.update` */ declare const NotificationSystem: FC<Props> & CompoundProps; export default NotificationSystem;