├── README.md ├── react-addons-test-utils.tgz ├── react-dom.tgz └── react.tgz /README.md: -------------------------------------------------------------------------------- 1 | # react-packages 2 | 3 | **These packages are obsolete as of React v16, which natively supports returning an array of elements from `render()`.** 4 | 5 | --- 6 | 7 | These packages are built from [mwiencek/react#frag-component](https://github.com/mwiencek/react/tree/frag-component), which includes a solution for React issue [#2127](https://github.com/facebook/react/issues/2127) (Add fragment API to allow returning multiple components from render). The frag feature can be used like this: 8 | 9 | ```JSX 10 | // Common scenario (returning multiple components from render) 11 | const ComponentA = () => ( 12 | 13 |

You’ve never seen

14 |

Magic like this

15 |
16 | ); 17 | 18 | // Pointless example to showcase behavior 19 | const ComponentB = () => ( 20 | 21 | 22 | 23 | {'Nestin’'} 24 | 25 | 26 |

More

27 |

Nestin’

28 |
29 |
30 | ); 31 | ``` 32 | 33 | Current packages are based on React v15.0.2. 34 | -------------------------------------------------------------------------------- /react-addons-test-utils.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwiencek/react-packages/9599ec36d3cacb0c690d6443a3f62e3c0467fa30/react-addons-test-utils.tgz -------------------------------------------------------------------------------- /react-dom.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwiencek/react-packages/9599ec36d3cacb0c690d6443a3f62e3c0467fa30/react-dom.tgz -------------------------------------------------------------------------------- /react.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwiencek/react-packages/9599ec36d3cacb0c690d6443a3f62e3c0467fa30/react.tgz --------------------------------------------------------------------------------