zent
Version:
一套前端设计语言和基于React的实现
15 lines (12 loc) • 383 B
JavaScript
import React, { Component } from 'react';
import { getKeyFromChildrenIndex } from './utils';
export default class CommonMenu extends Component {
renderCommonMenuItem(c, i, subIndex, extraProps) {
const newChildProps = {
index: getKeyFromChildrenIndex(c, i),
onClick: this.onClick,
...extraProps
};
return React.cloneElement(c, newChildProps);
}
}