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

Commit b3a74d1

Browse files
authored
Merge pull request #78 from reactjs/sync-f81b909c
Sync with reactjs.org @ f81b909
2 parents f2ceea2 + 8788045 commit b3a74d1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

content/docs/create-a-new-react-app.md

+2
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ Gatsby শিখুন [এর অফিশিয়াল গাইড](https://ww
7373

7474
- **[Neutrino](https://neutrinojs.org/)** তার প্রিসেটগুলো ব্যবহার করে [webpack](https://webpack.js.org/) এর ক্ষমতাকে আরও তরান্বিত করে, এবং [React অ্যাপসমূহ](https://neutrinojs.org/packages/react/)[React কম্পোনেন্টসমূহ](https://neutrinojs.org/packages/react-components/) এর জন্য একটি প্রিসেট অন্তর্ভুক্ত করে।
7575

76+
- **[Nx](https://nx.dev/react)** ফুল-স্ট্যাক monorepo ডেভেলপমেন্টের একটি টুলকিট, যাতে React, Next.js, [Express](https://expressjs.com/) সহ আরও অনেকের বিল্ট-ইন সাপোর্ট রয়েছে।
77+
7678
- **[Parcel](https://parceljs.org/)** একটি দ্রুত, জিরো কনফিগার্ড ওয়েব অ্যাপ্লিকেশন বান্ডেলার যা [React এর সাথে কাজ করে](https://parceljs.org/recipes.html#react)
7779

7880
- **[Razzle](https://github.com/jaredpalmer/razzle)** একটি সার্ভার-রেন্ডারিং ফ্রেমওয়ার্ক যাতে কোনো কনফিগারেশন দরকার হয় না, কিন্তু Next.js এর চেয়ে বেশি সুবিধা দেয়।

content/docs/lists-and-keys.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,7 @@ function NumberList(props) {
185185
const numbers = props.numbers;
186186
const listItems = numbers.map((number) =>
187187
// Correct! Key should be specified inside the array.
188-
<ListItem key={number.toString()}
189-
value={number} />
188+
<ListItem key={number.toString()} value={number} />
190189
);
191190
return (
192191
<ul>

0 commit comments

Comments
 (0)