Problem Statement
Which of the following is not a valid way to style components in React Native?
Explanation
React Native does not support traditional CSS files because it doesn’t use a web DOM. Styling is done using JavaScript objects, StyleSheet.create, or third-party libraries like styled-components.
Each style is written using camelCase property names similar to CSS but interpreted natively by the platform.