I can add this file into react component but widget appears under the page. not in the div in render method no style can change its position.
https://www.tradingview.com/widget/market-movers/
componentWillMount() {
const script = document.createElement("script");
const script2 = document.createElement("script");
script.src =
"https://s3.tradingview.com/external-embedding/embed-widget-market-overview.js";
script2.src =
"https://s3.tradingview.com/external-embedding/embed-widget-hotlists.js";
script.async = true;
script2.async = true;
//script.onload = () => this.scriptLoaded();
// document.body.appendChild(script);
// document.body.appendChild(script2);
}