Hacker News new | ask | show | jobs
by systoll 1508 days ago
> Unless they literally translate all html features to native components but I seriously doubt it.

React Native doesn’t use HTML. It has its own set of base tags (eg 'Text', 'Image', 'ScrollView') that are then translated to native components.

(Though, to complicate matters further, 'React Native for Web' exists, and translates those into HTML tags https://necolas.github.io/react-native-web/docs/ )

1 comments

Nice.. I didn't know about that!