Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nsantos16
Created July 24, 2020 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nsantos16/d42e2c264971373834c3718be90995a4 to your computer and use it in GitHub Desktop.
Save nsantos16/d42e2c264971373834c3718be90995a4 to your computer and use it in GitHub Desktop.
import React from 'react';
const usePageTitle = title => {
useEffect(() => {
document.title = title;
}, [document]);
};
export default usePageTitle;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment