mirror of https://gitlab.com/m3f_usm/SmartStopAPK
19 lines
334 B
TypeScript
19 lines
334 B
TypeScript
![]() |
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;
|