11 lines
193 B
React
11 lines
193 B
React
|
import { View, Text } from "react-native";
|
||
|
import React from "react";
|
||
|
|
||
|
export default function AlreadyAddWechat() {
|
||
|
return (
|
||
|
<View>
|
||
|
<Text>AlreadyAddWechat</Text>
|
||
|
</View>
|
||
|
);
|
||
|
}
|