How to access the data which is available at root level html script in react child components?
root.html
<html> <head> <script type="text/javascript"> function DataIntoComponents() { var message = 'Some Data'; //How to pass this message into the components } </script> </head> <body> <div id='root'></div> </body> </html>
index.tsx
componentDidMount{ //How to access message here ?? }