sonner
An opinionated toast component for React.

sonner downloads sonner version sonner license

sonnerPacchetti simili:
Trend di download npm
3 Anni
🌟 Mostra il grafico di utilizzo in tempo reale nel README.md di sonner, copia semplicemente il codice qui sotto.
## Usage Trend
[![Usage Trend of sonner](https://npm-compare.com/img/npm-trend/THREE_YEARS/sonner.png)](https://npm-compare.com/sonner#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Mostra il grafico del trend delle GitHub Stars nel README.md di sonner, copia semplicemente il codice qui sotto.
## GitHub Stars Trend
[![GitHub Stars Trend of sonner](https://npm-compare.com/img/github-trend/sonner.png)](https://npm-compare.com/sonner)
Dettaglio statistiche
Pacchetto
Download
Stars
Dimensione
Issues
Pubblicazione
Licenza
sonner5,872,82911,413166 kB41il y a 3 moisMIT
README per sonner

https://github.com/vallezw/sonner/assets/50796600/59b95cb7-9068-4f3e-8469-0b35d9de5cf0

Sonner is an opinionated toast component for React. 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';

// ...

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

Documentation

Find the full API reference in the documentation.