17 lines
No EOL
363 B
TypeScript
17 lines
No EOL
363 B
TypeScript
import React from "react";
|
|
import { SafeAreaView, View, Text } from "react-native";
|
|
import Home from "./pages/Home";
|
|
|
|
const App = () => {
|
|
return (
|
|
<SafeAreaView>
|
|
<View styles={{ backgroundColor: "#00ff00" }}>
|
|
<Text styles={{ color: "white" }}>Poggers Fish</Text>
|
|
|
|
<Home />
|
|
</View>
|
|
</SafeAreaView>
|
|
);
|
|
};
|
|
|
|
export default App; |