react-hooks-extended
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i react-hooks-extended

Weekly Downloads

4

Version

1.0.1

License

none

Unpacked Size

47.2 kB

Total Files

53

Last publish

Collaborators

  • momensherif