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

Commit 410a852

Browse files
merging all conflicts
2 parents f2ceea2 + f81b909 commit 410a852

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,13 @@ 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+
<<<<<<< HEAD
7677
- **[Parcel](https://parceljs.org/)** একটি দ্রুত, জিরো কনফিগার্ড ওয়েব অ্যাপ্লিকেশন বান্ডেলার যা [React এর সাথে কাজ করে](https://parceljs.org/recipes.html#react)
78+
=======
79+
- **[Nx](https://nx.dev/react)** is a toolkit for full-stack monorepo development, with built-in support for React, Next.js, [Express](https://expressjs.com/), and more.
80+
81+
- **[Parcel](https://parceljs.org/)** is a fast, zero configuration web application bundler that [works with React](https://parceljs.org/recipes.html#react).
82+
>>>>>>> f81b909ce97dc253998a192f367551cb2b40d66f
7783
7884
- **[Razzle](https://github.com/jaredpalmer/razzle)** একটি সার্ভার-রেন্ডারিং ফ্রেমওয়ার্ক যাতে কোনো কনফিগারেশন দরকার হয় না, কিন্তু Next.js এর চেয়ে বেশি সুবিধা দেয়।
7985

content/docs/lists-and-keys.md

Lines changed: 1 addition & 2 deletions
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)