React Native is an open source library created in 2015 by Ben Alpert.
git clone https://github.com/facebook/react-native
#482on PLDB | 8Years Old |
A framework for building native applications using React
import React from "react";
import { Text, View } from "react-native";
export default function HelloWorld() {
return (
<View>
<Text>Hello World</Text>
</View>
);
}