Created
July 3, 2024 16:40
-
-
Save MarekZeman91/af4af8d335902fef08c60ffca6e36144 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from "react"; | |
export function useUpdate(): [number, () => void] { | |
const [state, setState] = useState(0); | |
return [state, () => setState(Date.now())]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment