useEffectOnceWhen
Aboutβ
Runs a callback effect atmost one time when a condition becomes true
Installationβ
npm install --save rooks
Importing the hookβ
import { useEffectOnceWhen } from 'rooks';
Usageβ
function Demo() {
const hasOpenedPage = true;
useEffectOnceWhen(() => {
console.log('user has opened page');
}, hasOpenedPage);
return null;
}
render(<Demo />);
Codesandbox Examplesβ
Basic Usageβ
Join Bhargav's discord serverβ
You can click on the floating discord icon at the bottom right of the screen and talk to us in our server.