Alex Sidorenko

Change page title in React without libraries

June 26, 2021

👇

const About = () => {

  useEffect(() => {
    document.title = `About`
  }, []);

  return ...
}