25 lines
396 B
React
25 lines
396 B
React
|
// 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;
|
||
|
|
||
|
|
||
|
|