Created
May 30, 2022 21:00
-
-
Save andersonFaro9/964e28447c9d93a6cc3660012dc34209 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
//App.tsx | |
import { StatusBar } from 'react-native' | |
import { Home } from './src/pages/Home' | |
export default function App() { | |
return ( | |
<> | |
<StatusBar | |
barStyle='light-content' | |
translucent | |
backgroundColor='transparent' | |
/> | |
<Home /> | |
</> | |
) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment