0.15.0 • Published 5 months ago

@yoos/hooks v0.15.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@yoos/hooks

npm NPM License codecov CircleCI prs download code style: prettier

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

0.15.0

5 months ago

0.14.0

9 months ago