import { View, Text } from "@tarojs/components";
import { Component, ReactNode } from "react";
export default class UserPage extends Component {
render(): ReactNode {
return (
<View>
<Text>User Page</Text>
</View>
)
}