mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:15:09 +00:00
10 lines
136 B
JavaScript
10 lines
136 B
JavaScript
function Component(props) {
|
|
let x = 0;
|
|
for (let i = 0; i < props.count; ) {
|
|
x += i;
|
|
i += 1;
|
|
continue;
|
|
}
|
|
return x;
|
|
}
|