UNPKG

@6thquake/react-material

Version:

React components that implement Google's Material Design.

23 lines (19 loc) 492 B
import React from 'react'; import PropTypes from 'prop-types'; import { ItemGroup } from 'rc-menu'; class NavItemGroup extends React.Component { render() { return React.createElement(ItemGroup, this.props); } } process.env.NODE_ENV !== "production" ? NavItemGroup.propTypes = { /** * 分组的菜单项 */ children: PropTypes.func, /** * 分组标题 */ title: PropTypes.oneOfType([PropTypes.string, PropTypes.element]) } : void 0; export default NavItemGroup;