Skip to content

Instantly share code, notes, and snippets.

@code08-ind
Created March 29, 2021 19:45
Show Gist options
  • Save code08-ind/7450de8c12cff59f0aa4ecac70869b26 to your computer and use it in GitHub Desktop.
Save code08-ind/7450de8c12cff59f0aa4ecac70869b26 to your computer and use it in GitHub Desktop.
import {useEffect} from 'react';
const useIncrement = (state) => {
useEffect(() => {
document.title = state === 0 ? "Chats" : `Chats(${state})`;
}, [state]);
}
export default useIncrement;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment