Toast
An accessible and beautiful toast library for React.
- Install the library:
# Using npm:
npm install @pheralb/toast
# Using pnpm:
pnpm add @pheralb/toast
# Using yarn:
yarn add @pheralb/toast
- Add the toast provider:
// 📃 main.tsx
import { Toaster } from '@pheralb/toast';
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
<Toaster />
</React.StrictMode>,
);
- Usage:
// 📃 index.tsx
import { toast } from '@pheralb/toast';
export default function Index() {
return (
<>
<button
onClick={() =>
toast.success({
text: 'pheralb/toast',
description: '✨ A beautiful toast library for React',
})
}
>
<span>Render a toast</span>
</button>
</>
);
}