mapSelf.js 182 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import React from 'react'; function mirror(o) { return o; } export default function mapSelf(children) { // return ReactFragment return React.Children.map(children, mirror); }