CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
App.tsx
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| c53cf00 | 1 | import React from 'react'; |
| 2 | import { StatusBar } from 'expo-status-bar'; | |
| 3 | import { SafeAreaProvider } from 'react-native-safe-area-context'; | |
| 4 | import { RootNavigator } from './src/navigation/RootNavigator'; | |
| 5 | ||
| 6 | export default function App() { | |
| 7 | return ( | |
| 8 | <SafeAreaProvider> | |
| 9 | <StatusBar style="light" backgroundColor="#08090f" /> | |
| 10 | <RootNavigator /> | |
| 11 | </SafeAreaProvider> | |
| 12 | ); | |
| 13 | } |