15 lines
395 B
TypeScript
15 lines
395 B
TypeScript
|
|
import AddressList from "@/components/AddressList"
|
|
import { Button, ScrollView, Text, View } from "@tarojs/components"
|
|
import { stopPullDownRefresh, usePullDownRefresh } from "@tarojs/taro"
|
|
import { useState } from "react"
|
|
import "./index.scss"
|
|
|
|
export default ()=>{
|
|
|
|
return (
|
|
<View className="address-manager">
|
|
<AddressList refresherEnabled={true}/>
|
|
</View>
|
|
)
|
|
} |