UNPKG

react-mdl

Version:

React Components wrapper for Material Design Lite UI

8 lines (6 loc) 245 B
import React from 'react'; export default (children, props) => React.Children.map(children, child => { const newProps = typeof props === 'function' ? props(child) : props; return React.cloneElement(child, newProps); });