Skip to content

Instantly share code, notes, and snippets.

@andersonFaro9
Created May 30, 2022 21:00
Show Gist options
  • Save andersonFaro9/964e28447c9d93a6cc3660012dc34209 to your computer and use it in GitHub Desktop.
Save andersonFaro9/964e28447c9d93a6cc3660012dc34209 to your computer and use it in GitHub Desktop.
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