diff --git a/blog/2020/07/17/react-native-principles.html b/blog/2020/07/17/react-native-principles.html index e65c345aaf8..aabc1c47d51 100644 --- a/blog/2020/07/17/react-native-principles.html +++ b/blog/2020/07/17/react-native-principles.html @@ -89,7 +89,7 @@

Declarative UI

We don’t believe in deploying the exact same user interface on every platform, we believe in exposing each platform’s unique capabilities with the same declarative programming model. Our declarative programming model is React.

In our experience, the unidirectional data flow popularized by React makes applications easier to understand. We prefer to express a screen as a composition of declarative components rather than imperatively managed views. React’s success on the web and the direction of the new native Android and iOS frameworks show that the industry has also embraced declarative UI.

-

React popularized declarative user interfaces with innovations like Hooks, Suspense, and Concurrent Mode. However, there remain many unsolved problems that React is unique positioned to solve. React Native will continue to build on top of the innovations of React and remain at the forefront of the declarative user interface movement.

+

React popularized declarative user interfaces. However, there remain many unsolved problems that React is unique positioned to solve. React Native will continue to build on top of the innovations of React and remain at the forefront of the declarative user interface movement.

Recent Posts