1// npm install --save react-helmet in terminal
2// Then in file
3
4import React from 'react';
5import { Helmet } from 'react-helmet';
6
7const Home = () => {
8 return (
9 <div>
10 <Helmet>
11 <title>The Title You Want</title>
12 </Helmet>
13 // The Rest Of Your File....
14 //
15 //
16 </div>
17 );
18