diff --git a/src/content/learn/tutorial-tic-tac-toe.md b/src/content/learn/tutorial-tic-tac-toe.md index f1e6004e..887b93e9 100644 --- a/src/content/learn/tutorial-tic-tac-toe.md +++ b/src/content/learn/tutorial-tic-tac-toe.md @@ -1876,7 +1876,7 @@ export default function Game() { Ovde, `[...history, nextSquares]` kreira novi array koji sadrži sve stavke iz `history`, praćene nizom `nextSquares`. (Možete čitati `...history` [*spread sintaksu*](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax) kao „nabroj sve stavke u `history`”.) -Na primer, ako je `history` `[[null,null,null], ["X",null,null]]`, a `nextSquares` je `["X",null,"O"]`, novi niz `[...history, nextSquares]` biće `[[null,null,null], ["X",null,null], ["X",null,"O"]]`. +Na primer, ako je `history` `[[null,null,null], ["X",null,null]]`, a `nextSquares` je `["X",null,"O"]`, novi array `[...history, nextSquares]` biće `[[null,null,null], ["X",null,null], ["X",null,"O"]]`. U ovom trenutku, state je premešten u component-u `Game`, i korisnički interfejs bi trebalo da funkcioniše potpuno isto kao i pre refaktorisanja. Evo kako kod treba da izgleda na ovoj tački: @@ -2027,19 +2027,19 @@ body { -### Showing the past moves {/*showing-the-past-moves*/} +### Prikazivanje prethodnih poteza {/*showing-the-past-moves*/} -Since you are recording the tic-tac-toe game's history, you can now display a list of past moves to the player. +Pošto beležite istoriju igre iks-oks, sada možete prikazati listu prethodnih poteza igraču. -React elements like `