1.0.1 • Published 3 years ago

react-hooks-extended v1.0.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

React Hooks Extended 📦 Docs

  • Don't use in production, you can copy paste any hook into your code.
  • made only to try new tools & write more TS

Installation

  npm i react-hooks-extended
  yarn add react-hooks-extended

Basic usage

function Example() {
  const { count, increment, decrement, reset } = useCounter();

  return (
    <div>
      <p>Count: {count}</p>
      <button onClick={increment}>Increment</button>
      <button onClick={decrement}>Decrement</button>
      <button onClick={reset}>Reset</button>
    </div>
  );
}

Clone ?

Run playground server on port: 3000

yarn start

Run documentation server on port: 3001

yarn docs

##All Hooks are documented Here!

More ?

There's alot of hooks can be done. try by yourself and you can find some tutorial online and codes you can learn from.

1.0.1

3 years ago

1.0.0

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago