Skip to content

Instantly share code, notes, and snippets.

@MarekZeman91
Created July 3, 2024 16:40
Show Gist options
  • Save MarekZeman91/af4af8d335902fef08c60ffca6e36144 to your computer and use it in GitHub Desktop.
Save MarekZeman91/af4af8d335902fef08c60ffca6e36144 to your computer and use it in GitHub Desktop.
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