Skip to content

Commit 02e39da

Browse files
Merge branch 'master' into hooks_glance
2 parents d47b15c + 9c9d3d7 commit 02e39da

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ The following toolchains offer more flexibility and choice. We recommend them to
7373

7474
- **[Neutrino](https://neutrinojs.org/)** combines the power of [webpack](https://webpack.js.org/) with the simplicity of presets, and includes a preset for [React apps](https://neutrinojs.org/packages/react/) and [React components](https://neutrinojs.org/packages/react-components/).
7575

76+
- **[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.
77+
7678
- **[Parcel](https://parceljs.org/)** is a fast, zero configuration web application bundler that [works with React](https://parceljs.org/recipes.html#react).
7779

7880
- **[Razzle](https://github.com/jaredpalmer/razzle)** is a server-rendering framework that doesn't require any configuration, but offers more flexibility than Next.js.

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)