React Native मुख्य घटकों का एक सेट प्रदान करता है — जैसे View, Text, Image, ScrollView, TextInput — जो नेटिव UI तत्वों से मैप करते हैं। ये React Native UI के मौलिक निर्माण खंड हैं, जिन्हें वेब HTML तत्वों के बजाय उपयोग किया जाता है।
मुख्य घटक (बनाम वेब HTML)
React Native uses its OWN components (mapping to native views), NOT HTML:
VIEW → a container (like a <div>) — the basic layout building block
TEXT → display text (ALL text must be inside a <Text>, unlike web)
IMAGE → display images (local or remote)
TEXTINPUT → text input field (like an <input>)
SCROLLVIEW → a scrollable container
FLATLIST → an efficient scrollable LIST (for long lists — renders lazily)
TOUCHABLEOPACITY / PRESSABLE → handle taps (touchable areas)
BUTTON → a basic button
