npm.io
1.1.50 • Published 3 years ago

@cannonui/reacthooks

Licence
Version
1.1.50
Deps
7
Size
166 kB
Vulns
16
Weekly
0

Cannon React Hooks

License npm version

Cannon React Hooks is a collection of useful custom hooks for React applications. It provides a set of reusable hooks that solve common problems and enhance the functionality of your React components.

Features

  • useDebounce: A hook for debouncing the value of an input field.

And many more will be available soon!

Installation

Install the package using npm:

npm install @cannonui/reacthooks

Usage

Here's how you can use the hook from this library:

import { useState } from "react";
import { useDebounce } from "@cannonui/reacthooks";

const TestUseDebounce = () => {
  const [inputValue, setInputValue] = useState("");

  const debouncedValue = useDebounce(inputValue, 1000);

  const handleChange = (e: any) => {
    setInputValue(e.target.value);
  };

  return (
    <div>
      <input type="text" value={inputValue} onChange={handleChange} />
      <p>Debounced value: {debouncedValue}</p>
    </div>
  );
};

export default TestUseDebounce;

Contributing

Contributions are welcome! If you have any bug reports, feature requests, or suggestions, please open an issue or submit a pull request.

License

This project is licensed under the MIT License.