EVA-Notify/src/pages/user/user.tsx

12 lines
284 B
TypeScript

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>
)
}
}