JS compiler for native mobile user interfaces
React Native lets you write mobile apps in JavaScript, converting components directly into native platform widgets.
import { View, Text } from 'react-native';
export default function App() {
return (
<View style={{ flex: 1, justifyContent: 'center' }}>
<Text>React Native iOS & Android!</Text>
</View>
);
}