SmartStopAPK/src/presentation/screens/App.tsx

19 lines
334 B
TypeScript
Raw Normal View History

import {SafeAreaView, StyleSheet} from 'react-native';
import BusStopInfoScreen from './BusStopInfoScreen';
const App = () => {
return (
<SafeAreaView style={styles.container}>
<BusStopInfoScreen />
</SafeAreaView>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
export default App;