diff --git a/index.md b/index.md index 52dbc564..c2fb237b 100644 --- a/index.md +++ b/index.md @@ -8,17 +8,17 @@ id: home

Declarative

-

React makes it painless to update your views when your data changes. Just return the views to display for each possible state, and React handles the updates.

-

Declarative views make your code more predictable, simpler to understand, and easier to debug.

+

React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes.

+

Declarative views make your code more predictable and easier to debug.

Component-Based

-

With React, create encapsulated components that manage their own state, then compose them to build complex UIs.

-

Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep your state out of the DOM.

+

Build encapsulated components that manage their own state, then compose them to make complex UIs.

+

Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM.

Learn Once, Write Anywhere

-

We don't make assumptions about the rest of your technology stack – you can build new features in React without rewriting your existing code.

+

We don't make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code.

React can also render on the server using Node and power mobile apps using React Native.