type can be null
This commit is contained in:
parent
069f8b5eb9
commit
491856b98b
|
|
@ -40,7 +40,7 @@ function __pwRender(value) {
|
||||||
if (isJsxComponent(v)) {
|
if (isJsxComponent(v)) {
|
||||||
const component = v;
|
const component = v;
|
||||||
let type = component.type;
|
let type = component.type;
|
||||||
if ('__pw_type' in type && type.__pw_type === 'fragment')
|
if (type && type.__pw_type === 'fragment')
|
||||||
type = __pwReact.Fragment;
|
type = __pwReact.Fragment;
|
||||||
const props = component.props ? __pwRender(component.props) : {};
|
const props = component.props ? __pwRender(component.props) : {};
|
||||||
const key = component.key ? __pwRender(component.key) : undefined;
|
const key = component.key ? __pwRender(component.key) : undefined;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue