railbird-gql/App.tsx

13 lines
212 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 = () => {
2024-01-06 19:25:17 -07:00
return (
<SafeAreaView>
<Text>Hello, World!</Text>
</SafeAreaView>
);
2024-01-06 18:51:59 -07:00
};
export default App;