JSPM

  • Created
  • Published
  • Downloads 937
  • Score
    100M100P100Q109633F
  • License MIT

Debounce hook for react

Package Exports

  • @rooks/use-debounce

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@rooks/use-debounce) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@rooks/use-debounce

TitleCard

Build Status

About

Debounce hook for react

Installation

npm install --save @rooks/use-debounce

Importing the hook

import useDebounce from "@rooks/use-debounce"

Usage

function Demo() {
  useDebounce();
  return null
}

render(<Demo/>)