Customizable toast component for React
npm install alertbash
npm install alert
`
Add the component to your app, this component will take care of rendering all your toasts.
After that, you can use the toast() function from anywhere in your app.
`jsx
import { Toaster, toast } from 'alert';
// ...
const App = () => {
return (
);
}
``