
Co-authored-by: Richie Bendall <richiebendall@gmail.com> Co-authored-by: MrBrain295 <66077254+MrBrain295@users.noreply.github.com>
11 lines
200 B
JavaScript
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>
|
|
);
|
|
}
|