Skip to content

Commit 792f856

Browse files
committed
feat: change order for zib
1 parent a8c46fe commit 792f856

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/app/adder/Adder.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -264,29 +264,29 @@ const Adder = () => {
264264
<Button
265265
disabled={edit}
266266
onClick={() => {
267-
handlePress('1');
267+
handlePress('7');
268268
}}
269269
variant="outline"
270270
>
271-
1
271+
7
272272
</Button>
273273
<Button
274274
disabled={edit}
275275
onClick={() => {
276-
handlePress('2');
276+
handlePress('8');
277277
}}
278278
variant="outline"
279279
>
280-
2
280+
8
281281
</Button>
282282
<Button
283283
disabled={edit}
284284
onClick={() => {
285-
handlePress('3');
285+
handlePress('9');
286286
}}
287287
variant="outline"
288288
>
289-
3
289+
9
290290
</Button>
291291
<Button
292292
disabled={edit}
@@ -318,29 +318,29 @@ const Adder = () => {
318318
<Button
319319
disabled={edit}
320320
onClick={() => {
321-
handlePress('7');
321+
handlePress('1');
322322
}}
323323
variant="outline"
324324
>
325-
7
325+
1
326326
</Button>
327327
<Button
328328
disabled={edit}
329329
onClick={() => {
330-
handlePress('8');
330+
handlePress('2');
331331
}}
332332
variant="outline"
333333
>
334-
8
334+
2
335335
</Button>
336336
<Button
337337
disabled={edit}
338338
onClick={() => {
339-
handlePress('9');
339+
handlePress('3');
340340
}}
341341
variant="outline"
342342
>
343-
9
343+
3
344344
</Button>
345345
<Button
346346
disabled={edit}

0 commit comments

Comments
 (0)