nodoku-core 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -188,6 +188,6 @@ async function renderSingleComponent(rowIndex, componentIndex, component, blocks
|
|
|
188
188
|
// console.log("start rendering page with props", props);
|
|
189
189
|
const res = await component(props);
|
|
190
190
|
// console.log("end rendering page with props", props);
|
|
191
|
-
return res
|
|
191
|
+
return <div className={"nd-component-holder"} style={{ minWidth: 0 }}>{res}</div>;
|
|
192
192
|
}
|
|
193
193
|
export { RenderingPage };
|