Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 307 Bytes

change-page-title.md

File metadata and controls

13 lines (9 loc) · 307 Bytes

Change Page Title

Category: React

The default title for pages in applications built using create-react-app is "React App".

From React 16.8 onwards, you can change the page title with useEffect in your component:

useEffect(() => {
  document.title = "My Page Title"
}, []);