diff --git a/content/docs/components-and-props.md b/content/docs/components-and-props.md index 72a12883c..b4f1649af 100644 --- a/content/docs/components-and-props.md +++ b/content/docs/components-and-props.md @@ -16,15 +16,14 @@ prev: rendering-elements.html next: state-and-lifecycle.html --- -> Try the new React documentation for this topic. +> Try the new React documentation. > > These new documentation pages teach modern React and include live examples: > -> - [Quick Start](https://beta.reactjs.org/learn) > - [Your First Component](https://beta.reactjs.org/learn/your-first-component) > - [Passing Props to a Component](https://beta.reactjs.org/learn/passing-props-to-a-component) > -> The new docs will soon replace this site, which will be archived. [Provide feedback here.](https://github.com/reactjs/reactjs.org/issues/3308) +> The new docs will soon replace this site, which will be archived. [Provide feedback.](https://github.com/reactjs/reactjs.org/issues/3308) Components let you split the UI into independent, reusable pieces, and think about each piece in isolation. This page provides an introduction to the idea of components. You can find a [detailed component API reference here](/docs/react-component.html). diff --git a/content/docs/conditional-rendering.md b/content/docs/conditional-rendering.md index a000a447f..244b7d7a6 100644 --- a/content/docs/conditional-rendering.md +++ b/content/docs/conditional-rendering.md @@ -8,13 +8,13 @@ redirect_from: - "tips/false-in-jsx.html" --- -> Try the new React documentation for this topic. +> Try the new React documentation. > > These new documentation pages teach modern React and include live examples: > > - [Conditional Rendering](https://beta.reactjs.org/learn/conditional-rendering) > -> The new docs will soon replace this site, which will be archived. [Provide feedback here.](https://github.com/reactjs/reactjs.org/issues/3308) +> The new docs will soon replace this site, which will be archived. [Provide feedback.](https://github.com/reactjs/reactjs.org/issues/3308) In React, you can create distinct components that encapsulate behavior you need. Then, you can render only some of them, depending on the state of your application. diff --git a/content/docs/context.md b/content/docs/context.md index 650436456..1ba8e8651 100644 --- a/content/docs/context.md +++ b/content/docs/context.md @@ -4,14 +4,14 @@ title: Context permalink: docs/context.html --- -> Try the new React documentation for this topic. +> Try the new React documentation. > > These new documentation pages teach modern React and include live examples: > > - [Passing Data Deeply with Context](https://beta.reactjs.org/learn/passing-data-deeply-with-context) > - [`useContext`](https://beta.reactjs.org/reference/react/useContext) > -> The new docs will soon replace this site, which will be archived. [Provide feedback here.](https://github.com/reactjs/reactjs.org/issues/3308) +> The new docs will soon replace this site, which will be archived. [Provide feedback.](https://github.com/reactjs/reactjs.org/issues/3308) Context provides a way to pass data through the component tree without having to pass props down manually at every level. diff --git a/content/docs/forms.md b/content/docs/forms.md index f0600e8e5..9f2c29e4f 100644 --- a/content/docs/forms.md +++ b/content/docs/forms.md @@ -9,7 +9,7 @@ redirect_from: - "docs/forms-zh-CN.html" --- -> Try the new React documentation for this topic. +> Try the new React documentation. > > These new documentation pages teach modern React and include live examples: > @@ -17,7 +17,7 @@ redirect_from: > - [`