Skip to content

Instantly share code, notes, and snippets.

@dandrews
Created October 6, 2020 05:06
Show Gist options
  • Save dandrews/80befe4a6f7cdd9b8412e988e7599d6f to your computer and use it in GitHub Desktop.
Save dandrews/80befe4a6f7cdd9b8412e988e7599d6f to your computer and use it in GitHub Desktop.
const rootNode = document.createElement('div')
rootNode.setAttribute('id', 'root')
document.getElementById('shopify-section-product-template').append(rootNode)
const element = <div className="container">Hello World</div>
ReactDOM.render(element, document.getElementById('root'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment