Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Layout/HomeContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export function HomeContent() {
type="primary"
size="lg"
className="w-full sm:w-auto justify-center"
label="Learn React">
label="React сурах">
React сурах
</ButtonLink>
<ButtonLink
Expand Down
2 changes: 1 addition & 1 deletion src/components/MDX/ExpandableCallout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const variantMap = {
'linear-gradient(rgba(249, 247, 243, 0), rgba(249, 247, 243, 1)',
},
note: {
title: 'Note',
title: 'Зөвлөмж',
Icon: IconNote,
containerClasses:
'bg-green-5 dark:bg-green-60 dark:bg-opacity-20 text-primary dark:text-primary-dark text-lg',
Expand Down
23 changes: 12 additions & 11 deletions src/content/learn/tutorial-tic-tac-toe.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,32 @@
---
title: 'Tutorial: Tic-Tac-Toe'
title: 'Хичээл: Tic-Tac-Toe'
---

<Intro>

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.
Та энэ практик хичээлийн турш жижиг tic-tac-toe тоглоом хийх болно. Энэ хүү хичээл нь одоо байгаа react-н мэдлэгийг агуулаагүй. Таны сурах энэ хичээлийн техникүүд таныг react сурахад чинь үндэс суурь болно, мөн бүрэн ойлгох нь танд react-н талаарх гүнзгий ойлголтыг өгөх болно.

</Intro>

<Note>

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)
Энэ хичээл нь хийж сурахыг илүүд үздэг болон бодитой зүйлийг хурдан туршиж үзэхийг хүсдэг хүмүүст зориулж хийгдсэн. Хэрвээ та ойлголт бүрийг алхам алхмаар сурахыг илүүд үздэг бол, дараах холбоосноос эхэлнэ үү [Describing the UI.](/learn/describing-the-ui)

</Note>

The tutorial is divided into several sections:
Энэ хичээл нь хэд хэдэн хэсэгт хуваагдана:

- [Setup for the tutorial](#setup-for-the-tutorial) will give you **a starting point** to follow the tutorial.
- [Overview](#overview) will teach you **the fundamentals** of React: components, props, and state.
- [Completing the game](#completing-the-game) will teach you **the most common techniques** in React development.
- [Adding time travel](#adding-time-travel) will give you **a deeper insight** into the unique strengths of React.
- [Хичээлийн тохиргоо нь](#setup-for-the-tutorial) нь танд хичээлийг дагаж хийх **эхлэлийг** өгөх болно.
- [Тойм](#overview) нь танд react-н сууриудыг заах болно: components, props, and state.
- [Тоглоомыг дуусгах](#completing-the-game) нь react-н хөгжүүлэхэд шаардлагатай **нийтлэг техникүүдийг** заах болно.
- [Цаг хугацааны аялал нэмэх](#adding-time-travel) нь танд react-н давтагдашгүй давуу талуудын талаар илүү **гүнзгий ойлголт** өгөх болно.

### What are you building? {/*what-are-you-building*/}
### Та юу барьж байна вэ? {/*what-are-you-building*/}

In this tutorial, you'll build an interactive tic-tac-toe game with React.
Энэ хичээл дээр, та react ашиглан олон боломжтой tic-tac-toe тоглоом бий
болгох болно.

You can see what it will look like when you're finished here:
Та дууссаны дараа эндээс ямар болсныг харах боломжтой:

<Sandpack>

Expand Down
4 changes: 2 additions & 2 deletions src/sidebarLearn.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "Learn React",
"title": "React сурах",
"path": "/learn",
"routes": [
{
Expand All @@ -11,7 +11,7 @@
"path": "/learn",
"routes": [
{
"title": "Tutorial: Tic-Tac-Toe",
"title": "Хичээл: Tic-Tac-Toe",
"path": "/learn/tutorial-tic-tac-toe"
},
{
Expand Down