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>
|
||
|
);
|
||
|
}
|