@casperiv/useful
v3.0.0
Published
List of useful React functions and hooks
Downloads
264
Readme
useful
List of useful React functions and hooks
install
npm
npm install @casperiv/useful
Yarn
yarn add @casperiv/useful
Usage
import { useMounted } from "@casperiv/useful/hooks/useMounted";
const Component = () => {
const mounted = useMounted();
console.log("Mounted?", mounted);
return <p>Hello world!</p>;
};