import React, {useRef} from 'react'; function Row(props) { const {gutter = 0, bottom = 0, className} = props; return (
{React.Children.map(props.children, item => item)}
); } function Col(props) { const {span = 24, bottom = 0, className, style = {}} = props; return (
{React.Children.map(props.children, item => item)}
); } Row.Col = Col; export default Row;