Shows notifications sent via the NotificationService.
NotificationService
Only one instance of <Notifier /> should be present in the application. It currently does not matter where the Notifier is located in the react tree.
<Notifier />
import { Notifier } from "@open-pioneer/notifier";export function AppUI() { return ( <> <Notifier /> <h1>Your application</h1> </> );} Copy
import { Notifier } from "@open-pioneer/notifier";export function AppUI() { return ( <> <Notifier /> <h1>Your application</h1> </> );}
Shows notifications sent via the
NotificationService.Only one instance of
<Notifier />should be present in the application. It currently does not matter where the Notifier is located in the react tree.