0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added initial dom element insertion in init

no issue

Previously, we expected theme to include an empty div with id as `root` where we loaded our widget. This change automatically adds a root div to the document and renders widget inside it.
This commit is contained in:
Rish 2020-04-20 22:44:47 +05:30
parent 88d8008bcf
commit 0b7707fe7a

View file

@ -3,12 +3,19 @@ import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
function addRootDiv() {
const elem = document.createElement('div');
elem.id = 'ghost-membersjs-root';
document.body.appendChild(elem);
}
function initMembersJS(data) {
addRootDiv();
ReactDOM.render(
<React.StrictMode>
<App data={data} />
</React.StrictMode>,
document.getElementById('root')
document.getElementById('ghost-membersjs-root')
);
}