Hacker News new | ask | show | jobs
by ngrilly 2528 days ago
How do you know they use React Native for Web? The article says they unified their desktop and mobile architectures, but doesn't specify how.
1 comments

Opening in React devtools shows a number of hints[1]. "React Native Style Editor" section. "View" components with numeric "style" props. And the classname prefixes "css-" and "r-" match the generated identifiers from react-native-web[2].

[1]: https://imgur.com/lFUvL7P

[2]: https://github.com/necolas/react-native-web/blob/45f94eb43da...

That's convincing :-) Thanks!