`React.Children.map(props.children, c => [c, [c, [c]]])`,不管cb返回的数组有几层,最后总会被平铺成一一维的,即若children为a, b,上述的返回结果为a, a, a, b, b, b 