/notify

A notification component for React

Primary LanguageTypeScript

React Notification Library
(Inspired by iOS)

🚧 This package is under active development. 🚧
Some APIs are likely to break.

npm i @yoavik/notify
import { useNotify } from '@yoavik/notify';
const { add } = useNotify();
add({
  title: 'Some title',
  content: 'Some content',
  timeout: 5000,
});