Blame view

天文台pc/tianwentai-ui/node_modules/sonner/README.md 867 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  https://github.com/vallezw/sonner/assets/50796600/59b95cb7-9068-4f3e-8469-0b35d9de5cf0
  
  [Sonner](https://sonner.emilkowal.ski/) is an opinionated toast component for React. You can read more about why and how it was built [here](https://emilkowal.ski/ui/building-a-toast-component).
  
  ## Usage
  
  To start using the library, install it in your project:
  
  ```bash
  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.
  
  ```jsx
  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](https://sonner.emilkowal.ski/getting-started).