import { View, Text } from "@tarojs/components" import { memo } from "react" import style from "./index.module.scss" type Params = { onClose?: () => void, styleObj?: Object } export default memo(({onClose, styleObj = {}}:Params) => { return ( ) })