overview
builder
props
methods
promise
OVERVIEW

A toast library with a focus on performance and minimalism.
It provides a simple API to create customizable toast notifications with beautiful animations.

Get Started

npm install noti-toast
import { NotiRoot, noti } from "noti-toast";

function App() {
  return (
    <>
      <NotiRoot position="top-right" />
      <button onClick={() => noti.success("Hurray!!")}>
        Go For It
      </button>
    </>
  )
}

Try Here

Toast Types
With Description
With Action Button
Promise

Custom Component Body