/** * @description 请添加ProductMenu组件的描述和注释!!! * * @date 创建时间 2022-10-29 13:55 * @author 开发人员 */ import React from "react"; import { Coin } from "@atomintl/aui-next"; import { PulldownIcon } from "@icons/Pulldown"; interface Props { symbol?: string; base?: string; open?: boolean; } const CurrentProduct: React.FC = props => { const { symbol, base, open } = props; return (
{symbol ?? ""}
); }; CurrentProduct.defaultProps = { symbol: "BTCUSDT", base: "BTC" }; export default CurrentProduct;