logo
React Native Practical - Interview Questions and Answers
What are the core components of React Native?
Components are the building blocks of React Native; when combined, they make up the app as a whole. Some of the most common components are :

* View, used to display the entire app layout

* Text, used to display text

* TextInput, used to input text

* ScrollView, used to insert a scrolling container

* StyleSheet, used to insert style objects

* Image, used to render images

* Button, used to insert buttons