0.15.0 • Published 5 months ago
@yoos/hooks v0.15.0
@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