React Native is an open source framework created in 2015 by Jordan Walke and Christopher Chedeau.
#218on PLDB | 9Years Old |
git clone https://github.com/facebook/react-native
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>
);
}