Add ReactNative (#1147)

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
Co-authored-by: MrBrain295 <66077254+MrBrain295@users.noreply.github.com>
This commit is contained in:
Aravind M Nair
2021-10-16 20:24:02 +05:30
committed by GitHub
parent 600edc31cd
commit fb2297f7d1
2 changed files with 12 additions and 1 deletions

10
r/React Native.js Normal file
View File

@@ -0,0 +1,10 @@
import React from "react";
import { Text, View } from "react-native";
export default function HelloWorld() {
return (
<View>
<Text>Hello World</Text>
</View>
);
}