/** * @description 请添加Index组件的描述和注释!!! * * @date 创建时间 2022-10-29 13:55 * @author 开发人员 */ import React from "react"; import LastPrice from "./LastPrice"; import { MarketMenu } from "./MarketMenu"; import ExternalPrice from "./ExternalPrice"; import "./index.css"; export interface NavBarProps { lastPrice?: string; classes?: { lastPrice?: string; }; children?: React.ReactNode; } const NavBar: React.FC = props => { const { classes } = props; return (
{props.children}
); }; NavBar.defaultProps = {}; export default NavBar; export { default as CurrentProduct } from "./CurrentProduct";