Wrap container components in render protection

This commit is contained in:
Kyle Shockey
2017-11-17 18:26:07 -08:00
parent 200b361328
commit 44bd85a5bb
2 changed files with 111 additions and 1 deletions

View File

@@ -120,5 +120,5 @@ export const getComponent = (getSystem, getStore, getComponents, componentName,
return makeContainer(getSystem, component, getStore())
// container == truthy
return makeContainer(getSystem, component)
return makeContainer(getSystem, wrapRender(component))
}