UNPKG

silki

Version:

Cli tool for build react app, based on generator-react-multipage, create-react-app, roadhog. Support react multiple pages app develop.

8 lines (7 loc) 278 B
function LeftNav({ children, curTop, curLeft }){ const curLeftNav = children && children.find((child) => { return child.props.parentKey == curTop; }); return curLeftNav ? React.cloneElement(curLeftNav, { selectedKeys: [curLeft] }) : <div/>; } export default LeftNav;