Last active
September 11, 2021 01:39
-
-
Save MeetMartin/9231180840cd607f41b10624cd88f029 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 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