We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad21b7c commit 95943d9Copy full SHA for 95943d9
src/App.tsx
@@ -38,8 +38,8 @@ export default class App extends React.Component<IProps,
38
const items = new Array<IItem>();
39
const total = Math.ceil(((window.innerWidth - 40) / 350) * (window.innerHeight - 160) / 90);
40
for (let lv = 1; lv <= total; lv++) {
41
- let left = this.randomNumber(1, 12);
42
- let right = this.randomNumber(1, 12);
+ let left = this.randomNumber(1, 15);
+ let right = this.randomNumber(1, 15);
43
44
const rnd = this.randomNumber(1, 100) % 2;
45
const operator = rnd === 0
@@ -123,4 +123,4 @@ export default class App extends React.Component<IProps,
123
</div>
124
)
125
}
126
-}
+}
0 commit comments