Merge branch 'master' into bug/3511-query-formData-parameters

This commit is contained in:
Owen Conti
2017-08-02 22:37:49 -06:00
committed by GitHub
3 changed files with 15 additions and 5 deletions

View File

@@ -58,8 +58,7 @@ export const makeMappedContainer = (getSystem, getStore, memGetComponent, getCom
}
export const render = (getSystem, getStore, getComponent, getComponents, dom) => {
let domNode = document.querySelector(dom)
export const render = (getSystem, getStore, getComponent, getComponents, domNode) => {
let App = (getComponent(getSystem, getStore, getComponents, "App", "root"))
ReactDOM.render(( <App/> ), domNode)
}