10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
import { View, Text } from "@tarojs/components";
|
|
|
|
|
|
export default function UserIndex() {
|
|
return (
|
|
<View className="h-screen w-screen flex items-center justify-center bg-red-500 text-white">
|
|
<Text>UserIndex</Text>
|
|
</View>
|
|
);
|
|
} |