mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
6 lines
118 B
TypeScript
6 lines
118 B
TypeScript
import {useState} from './react';
|
|
|
|
const useUpdate = () => useState(0)[1] as (() => void);
|
|
|
|
export default useUpdate;
|