|
1 | 1 | ---
|
2 |
| -title: 'Tutorial: Tic-Tac-Toe' |
| 2 | +title: 'Hướng dẫn: Tic-Tac-Toe' |
3 | 3 | ---
|
4 | 4 |
|
5 | 5 | <Intro>
|
6 | 6 |
|
7 |
| -You will build a small tic-tac-toe game during this tutorial. This tutorial does not assume any existing React knowledge. The techniques you'll learn in the tutorial are fundamental to building any React app, and fully understanding it will give you a deep understanding of React. |
| 7 | +Trong hướng dẫn này, bạn sẽ xây dựng trò chơi tic-tac-toe. Hướng dẫn này không yêu cầu bạn có bất kì hiểu biết nào về React. Các kỹ thuật bạn học trong bài này sẽ là nền móng để xây dựng bất kỳ một ứng dụng React nào, và việc hiểu nó sẽ giúp bạn hiểu sâu hơn về React. |
8 | 8 |
|
9 | 9 | </Intro>
|
10 | 10 |
|
11 | 11 | <Note>
|
12 | 12 |
|
13 |
| -This tutorial is designed for people who prefer to **learn by doing** and want to quickly try making something tangible. If you prefer learning each concept step by step, start with [Describing the UI.](/learn/describing-the-ui) |
| 13 | +Hướng dẫn này được thiết kế cho những người thích cách **học thông qua thực hành** và muốn nhanh chóng thử làm cái gì đó hữu hình. Nếu bạn thích học lần lượt từng khái niệm, hãy bắt đầu với [Mô tả giao diện.](/learn/describing-the-ui) |
14 | 14 |
|
15 | 15 | </Note>
|
16 | 16 |
|
17 |
| -The tutorial is divided into several sections: |
| 17 | +Bài hướng dẫn được chia thành nhiều phần: |
18 | 18 |
|
19 |
| -- [Setup for the tutorial](#setup-for-the-tutorial) will give you **a starting point** to follow the tutorial. |
20 |
| -- [Overview](#overview) will teach you **the fundamentals** of React: components, props, and state. |
21 |
| -- [Completing the game](#completing-the-game) will teach you **the most common techniques** in React development. |
22 |
| -- [Adding time travel](#adding-time-travel) will give you **a deeper insight** into the unique strengths of React. |
| 19 | +- [Cài đặt cho bài hướng dẫn](#setup-for-the-tutorial) sẽ cho bạn **một điểm khởi đầu** để làm theo hướng dẫn. |
| 20 | +- [Tổng quan](#overview) sẽ dạy bạn **các kiến thức căn bản** của React: các component, prop, và state. |
| 21 | +- [Hoàn thiện trò chơi](#completing-the-game) sẽ dạy bạn **các kĩ thuật phổ biến nhất** khi phát triển ứng dụng React. |
| 22 | +- [(TODO: translate) Adding time travel](#adding-time-travel) sẽ cho bạn **một cái nhìn sâu sắc hơn** về những điểm mạnh độc nhất của React. |
23 | 23 |
|
24 |
| -### What are you building? {/*what-are-you-building*/} |
| 24 | +### Bạn sẽ làm ứng dụng gì? {/*what-are-you-building*/} |
25 | 25 |
|
26 |
| -In this tutorial, you'll build an interactive tic-tac-toe game with React. |
| 26 | +Trong hướng dẫn này, bạn sẽ xây dựng trò chơi tương tác tic-tac-toe bằng React. |
27 | 27 |
|
28 |
| -You can see what it will look like when you're finished here: |
| 28 | +Sau khi hoàn thành, nó sẽ trông như sau: |
29 | 29 |
|
30 | 30 | <Sandpack>
|
31 | 31 |
|
|
0 commit comments