railbird-gql/App.tsx

15 lines
234 B
TypeScript
Raw Normal View History

2024-01-06 18:51:59 -07:00
import React from "react";
import { SafeAreaView, Text } from "react-native";
const App: React.FC = () => {
return (
<SafeAreaView>
<Text>Hello, World!</Text>
</SafeAreaView>
);
};
export default App;