UNPKG

rooks

Version:

Essential React custom hooks ⚓ to super charge your components!

14 lines (13 loc) 416 B
import { useDidMount } from "./useDidMount"; import { warning } from "./warning"; /** * useWarningOnMountInDevelopment * @param message The message to be shown in the console * @see https://react-hooks.org/docs/useWarningOnMountInDevelopment */ function useWarningOnMountInDevelopment(message) { useDidMount(function () { warning(false, message); }); } export { useWarningOnMountInDevelopment };