This document introduces React Native, including who uses it, what it is, how to build and learn it, and how it compares to native development. React Native is a JavaScript framework that allows building iOS and Android apps using React. It was released by Facebook in 2015 and is open source. The document discusses installing React Native, key components like state and props, the component lifecycle, debugging tools, and Redux for state management. It compares the advantages of React Native like cross-platform development and instant reloading to native development.
13. REACT COMPONENT,
STATE & PROPS
Component (Button, FlatList, Image, Text,
etc)
State ( Auto update UI when changed)
Props ( Paramater)
Nested Component ( The component's state
is the props of the other component)
13