Setup
First, wrap your application with the NotificationProvider at the root level.
import { NotificationProvider } from "lambda-ui-components";
export default function App() {
return (
<NotificationProvider
maxNotifications={4}
placement="top-right"
duration={5000}
>
{/* Your app content */}
</NotificationProvider>
);
}