/sonner

An opinionated toast component for React.

Primary LanguageTypeScriptMIT LicenseMIT

SolarFlow.mp4

Sonner is an opinionated toast component for React.

Usage

To start using the library, install it in your project:

npm install sonner

Add <Toaster /> to your app, it will be the place where all your toasts will be rendered. After that you can use toast() from anywhere in your app.

import { Toaster, toast } from 'sonner';

// ...

function App() {
  return (
    <div>
      <Toaster />
      <button onClick={() => toast('My first toast')}>Give me a toast</button>
    </div>
  );
}

Documentation

You can find out more about the API and implementation in the Documentation.