9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
export default function UserSearch() {
|
|
return (
|
|
<View>
|
|
<Text>User Search</Text>
|
|
</View>
|
|
)
|
|
} |