feat: test popup not done

This commit is contained in:
2025-09-30 14:07:42 +08:00
parent 9fef267cf6
commit 4b31141287
9 changed files with 306 additions and 24 deletions

View File

@@ -0,0 +1,23 @@
import React from "react";
import { View, Text } from "@tarojs/components";
import styles from "./index.module.scss";
function NtrpPopupGuide() {
return (
<View className={styles.container}>
<View className={styles.top}>
<View className={styles.header}></View>
<View className={styles.avatarWrap}></View>
<View className={styles.title}>
<View></View>
<View></View>
</View>
<View className={styles.desc}>
<Text> NTRP </Text>
</View>
</View>
</View>
);
}
export default NtrpPopupGuide;