could you please tell me how to remove wrapper div in react js ?
here is my code https://codesandbox.io/s/festive-oskar-nbwjs?file=/src/App.js
current output
<div id="root">
<div class="App">
<h1>Hello CodeSandbox</h1>
<div>
<section>ddddd</section>
</div>
</div>
</div>
Expected output
<div id="root">
<div class="App">
<h1>Hello CodeSandbox</h1>
<section>ddddd</section>
</div>
</div>
how to remove this wrapper div
. <div dangerouslySetInnerHTML={createMarkup()} />;