Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

a little contribution. Will Continue later #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 6 additions & 5 deletions content/tutorial/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,16 @@ import './index.css';

আপনি যদি কোথাও আটকে যান, তবে [কমিউনিটি সাপোর্ট রিসোর্সে](/community/support.html) যেতে পারেন। নির্দিষ্টভাবে বললে, [Reactiflux Chat](https://discord.gg/0ZcbPKXt5bZjGY5n) এর মাধ্যমে আপনি খুব দ্রুত সাহায্য পেতে পারেন। আপনি যদি তাদের থেকে কোন উত্তর না পান অথবা এরপরও আটকে থাকেন, তবে একটি ইস্যু খুলতে পারেন, সেক্ষেত্রে আমরাই আপনাকে সাহায্য করব।

## Overview {#overview}
## সংক্ষিপ্ত বিবরণ {#overview}

Now that you're set up, let's get an overview of React!
এখন আপনি সেট আপ করা, আসুন React এর একটি সংক্ষিপ্ত বিবরণ দেখি!

### What Is React? {#what-is-react}
### React কি? {#what-is-react}

React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolated pieces of code called "components".
User ইন্টারফেস নির্মাণের জন্য React একটি ঘোষণামূলক, দক্ষ, এবং নমনীয় JavaScript লাইব্রেরি. এটি আপনাকে জটিল UIs রচনা করতে দেয়
ছোট এবং বিচ্ছিন্ন টুকরা code থেকে যাকে "components" বলে.

React has a few different kinds of components, but we'll start with `React.Component` subclasses:
React এর ছোট এবং বিচ্ছিন্ন টুকরা components আছে, কিন্তু আমরা `React.Component` subclasses দিয় শুরু করবো:

```javascript
class ShoppingList extends React.Component {
Expand Down