function Component(props) {
let x = [];
let y;
switch (props.p0) {
case 1: {
break;
}
case true: {
x.push(props.p2);
y = [];
}
default: {
break;
}
case false: {
y = x;
break;
}
}
const child = <Component data={x} />;
y.push(props.p4);
return <Component data={y}>{child}</Component>;
}