sonner

An opinionated toast component for React.

sonner downloads sonner version sonner license

sonner類似パッケージ:
npmのダウンロードトレンド
3 年
🌟 sonnerのREADME.mdにリアルタイム使用チャートを表示するには、以下のコードをコピーしてください。
## 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
🌟 sonnerのREADME.mdにGitHub Starsトレンドチャートを表示するには、以下のコードをコピーしてください。
## GitHub Stars Trend
[![GitHub Stars Trend of sonner](https://npm-compare.com/img/github-trend/sonner.png)](https://npm-compare.com/sonner)
統計詳細
パッケージ
ダウンロード数
Stars
サイズ
Issues
公開日時
ライセンス
sonner8,196,04511,683166 kB454ヶ月前MIT
sonner のREADME

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.