@incloodsolutions/react-toolkit
v0.0.2
Published
A collection of reusable React utilities, hooks, and components designed to accelerate development and improve code consistency across React applications.
Maintainers
Readme
@incloodsolutions/react-toolkit
A utility and helper library for React applications, built on top of @incloodsolutions/toolkit.
Provides hooks, context utilities, and reusable patterns that simplify state management, component logic, and developer experience in modern React projects.
📦 Installation
npm install @incloodsolutions/react-toolkit
# or
yarn add @incloodsolutions/react-toolkit🚀 Usage
import { useToggle } from "@incloodsolutions/react-toolkit";
function ExampleComponent() {
const [isOpen, toggle] = useToggle();
return (
<button onClick={toggle}>
{isOpen ? "Open" : "Closed"}
</button>
);
}
