| 123456789101112131415161718192021 |
- import { View,Text } from "@tarojs/components";
- import Activity from '@/features/trackSomething/components/Activity'
- import { useReady } from "@tarojs/taro";
- import { activityCards } from "@/services/trackSomething";
- export default function Page(){
- // useReady(()=>{
- // activityCards().then(res=>{
-
- // })
- // })
- function refresh(){
- console.log('refresh')
- }
- return (
- <View>
- <Activity />
- </View>
- )
- }
|