Aravind M Nair fb2297f7d1
Add ReactNative (#1147)
Co-authored-by: Richie Bendall <richiebendall@gmail.com>
Co-authored-by: MrBrain295 <66077254+MrBrain295@users.noreply.github.com>
2021-10-17 03:54:02 +13:00

11 lines
200 B
JavaScript

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