Skip to content

Instantly share code, notes, and snippets.

@MeetMartin
Last active September 11, 2021 01:39
Show Gist options
  • Save MeetMartin/9231180840cd607f41b10624cd88f029 to your computer and use it in GitHub Desktop.
Save MeetMartin/9231180840cd607f41b10624cd88f029 to your computer and use it in GitHub Desktop.
import useInterval from './useInterval';
// use as useHeartBeat(time); which writes out 'I am alive!' every 'time' milliseconds
const useHeartBeat = useInterval(() => console.log('I am alive!'));
export default useHeartBeat;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment