Skip to content

Commit 4c1fa45

Browse files
committed
Add 50 -> 10 array items example
1 parent 94dcd97 commit 4c1fa45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export function Form() {
235235
onClick={() => {
236236
setValues([
237237
...values,
238-
...Array(50)
238+
...Array(10)
239239
.fill(0)
240240
.map((_, i) => ({
241241
message: "Fix this " + i,
@@ -244,7 +244,7 @@ export function Form() {
244244
]);
245245
}}
246246
>
247-
Add 50 items
247+
Add 10 items
248248
</button>
249249
</VisualRender>
250250
)}

0 commit comments

Comments
 (0)