import { View, Image } from "@tarojs/components"; import img from "@/config/images"; import styles from "./index.module.scss"; import { useGlobalState } from "@/store/global"; import Taro from "@tarojs/taro"; const ListHeader = () => { const { statusNavbarHeightInfo } = useGlobalState(); const { statusBarHeight, navBarHeight, totalHeight } = statusNavbarHeightInfo; const handleBack = () => { Taro.navigateBack(); } return ( {/* back */} ); }; export default ListHeader;