rehooks-ts
v2.1.1
Published
An optimized, lightweight, and reusable react production-ready hooks library written in TypeScript.
Downloads
536
Maintainers
Readme
import { useCounter } from 'rehooks-ts';
function Component() {
const { count, increment, decrement } = useCounter(0);
...
}