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