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.
31 lines
415 B
31 lines
415 B
3 years ago
|
/**
|
||
|
* @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;
|