You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 rivejä
182 B

  1. import React from 'react';
  2. function mirror(o) {
  3. return o;
  4. }
  5. export default function mapSelf(children) {
  6. // return ReactFragment
  7. return React.Children.map(children, mirror);
  8. }