UNPKG

admin-on-rest-fr05t1k

Version:

A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI

13 lines (10 loc) 354 B
import React from 'react'; import FormField from './FormField'; const FormTab = ({ label, icon, children, ...rest }) => <span> {React.Children.map(children, input => input && ( <div key={input.props.source} style={input.props.style}> <FormField input={input} {...rest} /> </div> ))} </span>; export default FormTab;