# lumrop ## Introduction **lumrop** is a versatile npm package that provides a collection of React components, hooks, and utilities designed to simplify and enhance development within the React ecosystem. Whether you're working on personal projects or building for the public, **lumrop** offers tools to streamline your workflow. ## Installation Install the package using npm or yarn: ```bash # with npm npm install @flare/lumrop --registry https://lab.code-rove.com/public-node-registry # with yarn yarn add @flare/lumrop --registry https://lab.code-rove.com/public-node-registry ``` ## Usage Import and use the provided hooks and utilities in your React project: ```jsx import { useWindowSize, useLink, useTitle } from "@flare/lumrop"; // Example usage function App() { const { width, height } = useWindowSize(); useTitle("Welcome to Lumrop"); return (