Skip to content

Instantly share code, notes, and snippets.

@nsantos16
Created July 24, 2020 21:48
Show Gist options
  • Select an option

  • Save nsantos16/d42e2c264971373834c3718be90995a4 to your computer and use it in GitHub Desktop.

Select an option

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