Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/glennreyes/toast-system

🥪 A minimalistic Toast notification system for React
https://github.com/glennreyes/toast-system

notification react react-component system toast

Last synced: 10 days ago
JSON representation

🥪 A minimalistic Toast notification system for React

Awesome Lists containing this project

README

        

# toast-system

A minimalistic Toast notification system for React

- Zero dependencies
- Style-agnostic

## Usage

```sh
npm install react-toast
```

```js
import { ToastsProvider, Toast } from 'react-toast';

const App = ReactDOM.render(


My app






{toast => toast(
Clicked!
, 1500)}>}


,
document.getElementById('root')
);
```