mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
11 lines
147 B
JavaScript
11 lines
147 B
JavaScript
function Component(props) {
|
|
let x = 0;
|
|
for (let i = 0; i < props.count; ) {
|
|
x += i;
|
|
if (x > 10) {
|
|
break;
|
|
}
|
|
}
|
|
return x;
|
|
}
|