/* * @Description: * @Author: jiass * @Date: 2022-04-02 17:13:24 * @LastEditTime: 2022-04-08 16:18:06 * @LastEditors: lanzhisheng */ import React from "react"; import { View } from "@tarojs/components"; const TopManage = (props: any) => { let { title } = props; return {title}; }; export default TopManage;