@yoos/hooks
v0.14.0
Published
a simple react hooks collection
Downloads
72
Readme
@yoos/hooks
This is a practical JS toolkit based on ESM (ECMAScript Modules)
Install
npm i -S @yoos/hooks
Usage
import { useAsyncEffect } from '@yoos/hooks'
export default () => {
useAsyncEffect(async () => {
const data = await fetch('/');
console.log(data);
}, [])
return null;
}
Docs
LICENSE
MIT