import { ToastProvider } from 'rc-toastr'
import "rc-toastr/dist/index.css" // import the css file
ReactDOM.render((
    <ToastProvider>
        <App />
    </ToastProvider>
), document.getElementById('root'))import { useToast } from 'rc-toastr'
const App = () => {
    const { toast } = useToast()
    const hello = () => toast.success("Hello World!")
    return <button onClick={toast}> Say Hello </button>
  }
export default AppFor more information and examples feel free to check the official website at: dub.sh/rc-toastr
