Problem Statement
What is JSX in the context of React Native?
Explanation
JSX allows developers to describe UI components in a declarative way. It looks similar to HTML but compiles down to JavaScript function calls. In React Native, it represents <View>, <Text>, and other native components.