UNPKG

230 BJavaScriptView Raw
1import { useEffect } from "react";
2
3export default function useBoolCall(dep, onTrue, onFalse) {
4 useEffect(() => {
5 if (dep) {
6 onTrue && onTrue();
7 } else {
8 onFalse && onFalse();
9 }
10 }, [dep]);
11}