登录 注册
当前位置:主页 > 资源下载 > 32 > React Utility Hook react-use-interval 用于管理间隔

React Utility Hook react-use-interval 用于管理间隔

  • 更新:2024-09-27 22:08:08
  • 大小:187KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

React使用间隔 这是react挂钩的自定义版本,用于设置发布在overreacted.io上的时间间隔。 安装 npm install --save @ascendum/use-interval 用法 import as React from 'react' import { useInterval } from 'react-use-interval' const MyComponent = ( ) => { const { toggleRunning , isRunning } = useInterval ( ( ) => { // Do whatever magic you wish here. } , 1000 ) ; return ( < div> < button onClick = { toggleRunnin