Appearance
使用 requestAnimationFrame 实现的定时器。
import { useRafInterval } from '@base-web-kits/base-tools-react'; useRafInterval(() => { setCount(count + 1); }, 1000);
ahooks