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.

toRenderProps.js 251 B

3 years ago
123456789101112
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = toRenderProps;
  4. function toRenderProps(hoc) {
  5. var RenderPropsComponent = function RenderPropsComponent(props) {
  6. return props.children(props);
  7. };
  8. return hoc(RenderPropsComponent);
  9. }