Skip to content

Instantly share code, notes, and snippets.

@GalindoSVQ
Created October 30, 2023 15:32
Show Gist options
  • Save GalindoSVQ/c8b3bfd55967dfb44ee4b3ba1a3df230 to your computer and use it in GitHub Desktop.
Save GalindoSVQ/c8b3bfd55967dfb44ee4b3ba1a3df230 to your computer and use it in GitHub Desktop.
import { useEffect } from 'react';
export default function useDocumentTitle(title: string) {
useEffect(() => {
document.title = title;
}, [title]);
}
@GalindoSVQ
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment