Skip to content

Commit 19299cb

Browse files
Translation until starter code files
1 parent 07dd323 commit 19299cb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/content/learn/tutorial-tic-tac-toe.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -284,22 +284,23 @@ CodeSandbox-এ আপনি তিনটি প্রধান section দে
284284
![CodeSandbox with starter code](../images/tutorial/react-starter-code-codesandbox.png)
285285

286286
1. _Files_ section যেখানে আপনি files-এর list যেমন, `App.js`, `index.js`, `styles.css` এবং `Piblic` নাম একটি folder দেখতে পাবেন
287-
2. The _code editor_ where you'll see the source code of your selected file
288-
3. The _browser_ section where you'll see how the code you've written will be displayed
287+
2. _Code Editor_ যেখানে আপনি যে file-টি select করেছেন সেটির source code দেখতে পাবেন
288+
3. _Browser_ section যেখানে আপনি যে code-টি লিখেছেন সেটি browser-এ কেমন দেখাবে তা দেখতে পাবেন
289+
290+
Files section-এ `App.js` file-টি selected থাকা উচিত | _Code editor_-এ এই ফাইলটির content হলো:
289291

290-
The `App.js` file should be selected in the _Files_ section. The contents of that file in the _code editor_ should be:
291292

292293
```jsx
293294
export default function Square() {
294295
return <button className="square">X</button>;
295296
}
296297
```
297298

298-
The _browser_ section should be displaying a square with a X in it like this:
299+
_Browser section_-এ ঠিক এইভাবে আপনি একটি square-এর মধ্যে একটি X দেখতে পাবেন:
299300

300301
![x-filled square](../images/tutorial/x-filled-square.png)
301302

302-
Now let's have a look at the files in the starter code.
303+
এখন starter code-এ উপস্থিত file-গুলোকে দেখে নেওয়া যাক।
303304

304305
#### `App.js` {/*appjs*/}
305306

0 commit comments

Comments
 (0)