You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
415 B
30 lines
415 B
/** |
|
* @format |
|
* @flow strict-local |
|
*/ |
|
|
|
import React from 'react'; |
|
import { |
|
StyleSheet, |
|
useColorScheme, |
|
} from 'react-native'; |
|
|
|
import { |
|
Colors, |
|
} from 'react-native/Libraries/NewAppScreen'; |
|
|
|
import Navigator from './src/navigation'; |
|
|
|
const App = () => { |
|
const isDarkMode = useColorScheme() === 'dark'; |
|
|
|
return ( |
|
<Navigator /> |
|
); |
|
}; |
|
|
|
const styles = StyleSheet.create({ |
|
|
|
}); |
|
|
|
export default App;
|
|
|