BikeApp_demo/src/views/ProfileScreen.jsx

25 lines
396 B
React
Raw Normal View History

2024-11-07 17:47:25 +08:00
// src/views/ShopScreen.tsx
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const ShopScreen = () => {
return (
<View style={styles.container}>
<Text>Shop Screen</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});
export default ShopScreen;