feat: 我的页面

This commit is contained in:
eric
2022-11-13 11:08:30 +08:00
parent c27e8ce790
commit 750a6344a7
29 changed files with 25009 additions and 895 deletions

17
src/pages/my/index.tsx Normal file
View File

@@ -0,0 +1,17 @@
import { Tabbar, TabbarItem } from "@antmjs/vantui";
import { View } from "@tarojs/components";
import react from "react";
import TabbarCom from "../components/TabbarCom";
const my = (props: any) => {
// const [active, setActive] = react.useState(props?.active ?? 0);
return (
<View>
my
<TabbarCom active={2} />;
</View>
);
};
export default my;