Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 865 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 865 Bytes
SolarFlow.mp4

Sonner is an opinionated toast component. You can read more about why and how it was built here.

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';

// ...

render(
  () => (
    <div>
      <Toaster />
      <button onClick={() => toast('My first toast')}>Give me a toast</button>
    </div>
  ),
  document.body,
);

Documentation

Find the full API reference in the documentation.