Problem Statement
Which technique is used to render elements conditionally in React Native?
Explanation
Conditional rendering in React Native can be done using simple JavaScript logic. The ternary operator is common: `{isLoggedIn ? <Home/> : <Login/>}`.
Practice Sets
This question appears in the following practice sets: