I can see a list of examples of how to use react-helmet to change
<html lang='en|es|ti|'>
Below I have public/index.html and please suggest me step-by-step procedure to adopt react-helmet. Since index.html is a static html, outside of react root and so I am kind of misaligned.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charSet='utf-8'></meta>
<meta http-equiv='x-ua-compatible' content='ie=edge'></meta>
<meta name='format-detection' content='telephone=no'></meta>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
If I change
<html lang="es">
dynamically, will my page translated to spanish ? Is there a proper way to do ?