@zendeskgarden/react-notifications
This package includes several varieties of notifications and wells within
the Garden Design System.
Installation
npm install @zendeskgarden/react-notifications
npm install react react-dom styled-components @zendeskgarden/react-theming
Usage
Notifications
import { ThemeProvider } from '@zendeskgarden/react-theming';
import { Notification } from '@zendeskgarden/react-notifications';
<ThemeProvider>
<Notification>
<Notification.Title>Example Title</Notification.Title>
Lorem ipsum dolor sit amet, consectetur adipiscing elit...
</Notification>
</ThemeProvider>;
Toasts
import { ThemeProvider } from '@zendeskgarden/react-theming';
import { Button } from '@zendeskgarden/react-buttons';
import { Notification, ToastProvider, useToast } from '@zendeskgarden/react-notifications';
const ToastExample = () => {
const { addToast } = useToast();
return (
<Button
onClick={() =>
addToast(({ close }) => (
<Notification>
Example notification
<Notification.Close onClick={close} aria-label="Close" />
</Notification>
))
}
>
Add toast
</Button>
);
};
<ThemeProvider>
<ToastProvider>
<ToastExample />
</ToastProvider>
</ThemeProvider>;