9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
export default function MarketPlace() {
|
|
return (
|
|
<View>
|
|
<Text>Market Place</Text>
|
|
</View>
|
|
);
|
|
} |