react-native-game-engine-ex.../App.tsx

16 lines
342 B
TypeScript
Raw Normal View History

2022-06-25 00:29:43 -05:00
import { StatusBar } from "expo-status-bar";
import { SafeAreaProvider } from "react-native-safe-area-context";
import AppView from "./AppView";
export default function App() {
return (
<>
<StatusBar backgroundColor="orange" hidden={true} />
<SafeAreaProvider>
<AppView />
</SafeAreaProvider>
</>
);
}