1.0.1 • Published 11 months ago
@najwer23snacks/hooks v1.0.1
This is a collection of custom React hooks that provide a wide range of functionality to enhance your application's development experience. These hooks are designed to be reusable, efficient, and easy to integrate into your projects. Whether you need to handle window resizing, manage form state, or interact with the browser's storage, this library has you covered.
Install
yarn add @najwer23snacks/hooks --dev
npm install @najwer23snacks/hooks --save-dev
Example
import { useWindowSize } from '@najwer23snacks/hooks';
const MyComponent = () => {
const { width, height } = useWindowSize(300); // 300 ms debounce delay
return (
<div>
<p>Window width: {width}px</p>
<p>Window height: {height}px</p>
</div>
);
};