Skip to content

Commit 3eedcb1

Browse files
authored
Tweak links in README
1 parent 6d6de60 commit 3eedcb1

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,24 @@ class HelloMessage extends React.Component {
3737
}
3838

3939
ReactDOM.render(
40-
<HelloMessage name="John" />,
40+
<HelloMessage name="Taylor" />,
4141
document.getElementById('container')
4242
);
4343
```
4444

45-
This example will render "Hello John" into a container on the page.
45+
This example will render "Hello Taylor" into a container on the page.
4646

47-
You'll notice that we used an HTML-like syntax; [we call it JSX](https://reactjs.org/docs/introducing-jsx.html). JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. We recommend using [Babel](https://babeljs.io/) with a [React preset](https://babeljs.io/docs/plugins/preset-react/) to convert JSX into native JavaScript for browsers to digest.
47+
You'll notice that we used an HTML-like syntax; [we call it JSX](https://reactjs.org/docs/introducing-jsx.html). JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. The next section contains instructions for integrating React and JSX (optionally) into your project.
4848

4949
## Installation
5050

51-
React is designed for gradual adoption, and **you can use as little or as much React as you need**.
51+
React has been designed for gradual adoption from the start, and **you can use as little or as much React as you need**:
5252

53-
Whether you want to get a taste of React, add some interactivity to a simple HTML page, or start a complex React-powered app, the links in this section will help you get started:
53+
* Use [Online Playgrounds](https://reactjs.org/docs/getting-started.html#online-playgrounds) to get a taste of React.
54+
* [Add React to a Website](https://reactjs.org/docs/add-react-to-a-website.html) as a `<script>` tag in one minute.
55+
* [Create a New React App](https://reactjs.org/docs/create-a-new-react-app.html) if you're looking for a powerful JavaScript toolchain.
5456

55-
* [Online Playgrounds](https://reactjs.org/docs/getting-started.html#online-playgrounds)
56-
* [Add React to a Website](https://reactjs.org/docs/add-react-to-a-website.html)
57-
* [Create a New React App](https://reactjs.org/docs/create-a-new-react-app.html)
58-
59-
React is available as the `react` package on [npm](https://www.npmjs.com/). It is also available on a [CDN](https://reactjs.org/docs/cdn-links.html).
57+
You can use React as a `<script>` tag from a [CDN](https://reactjs.org/docs/cdn-links.html), or as a `react` package on [npm](https://www.npmjs.com/).
6058

6159
## Contributing
6260

0 commit comments

Comments
 (0)