Files
2026-08-27 21:09:14 +00:00

18 lines
256 B
JavaScript

function Component(props) {
debugger;
if (props.cond) {
debugger;
} else {
while (props.cond) {
debugger;
}
}
debugger;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: ['TodoAdd'],
isComponent: 'TodoAdd',
};