<8*1>/FX3FDPODJMFS
function Continuation({ isSame }) {
return
{isSame ? 'foo==bar' : 'foo!=bar'};
}
function Child({ bar }) {
return ReactCoroutine.createYield({
bar: bar,
}, Continuation, null);
}
function Indirection() {
return [, ];
}
function HandleYields(props, yields) {
return yields.map(y =>
);
}
function Parent(props) {
return ReactCoroutine.createCoroutine(
props.children,
HandleYields,
props
);
}
function App() {
return
;
}
ReactNoop.render();
ReactNoop.flush();