/** * @description 请添加ExternalPrice组件的描述和注释!!! * * @date 创建时间 2022-10-29 15:56 * @author 开发人员 */ import React from "react"; import Cell from "./Cell"; interface Props {} const ExternalPrice: React.FC = props => { const {} = props; return (
); }; export default ExternalPrice;