Skip to content

Instantly share code, notes, and snippets.

@fersilva16
Created May 4, 2022 13:53
Show Gist options
  • Save fersilva16/d72e510bfec776756a714a22c1399904 to your computer and use it in GitHub Desktop.
Save fersilva16/d72e510bfec776756a714a22c1399904 to your computer and use it in GitHub Desktop.
import { useRef } from 'react';
export const useCounter = () => {
const stepCount = useRef<number>();
stepCount.current = 0;
return () => {
stepCount.current = (stepCount.current || 0) + 1;
return stepCount.current;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment