better react hooks
Inside your React project directory, run the following:
yarn add isabellae
Or with npm:
npm install isabellae
Use in your hooks like this:
import { useArray } from 'isabellae'
const useUserList = () => {
const [users, { push, remove }] = useArray([])
return [users, { addUser: push, deleteUser: remove }]
}