import React from 'react'; import { Dropdown } from 'antd'; import './style.less'; /* * Dropdown 组件 * * 基于原 ant Dropdown * 只扩展自定义样式 * */ class BIDropdown extends React.PureComponent { render() { const { children } = this.props; return ( {children} ); } } export default BIDropdown;