@khencahyo13/notifin-react@khencahyo13/notifin-react
Alert dialog React yang cepat, tegas, dan mudah dipanggil.
Function-first API
Panggil notif dari mana saja dengan satu baris, tanpa setup rumit.
Theme & Motion Ready
Mendukung dark/light scheme, motion preset, dan override tampilan.
Queue + Promise Helper
Kelola antrean dialog dan ikat state async lewat notifin.promise().
Quick Start
import { Notifin, notifin } from "@khencahyo13/notifin-react";

export default function App() {
  return (
    <>
      <Notifin motion="subtle" colorScheme="system" />
      <button onClick={() => notifin.success("Profile updated")}>
        Trigger
      </button>
    </>
  );
}
Live Demo