UNPKG

hm-react-cli

Version:

Create a Huimei React project by module

17 lines (15 loc) 351 B
import { miniCreateClass } from "react-core/util"; import { Component } from "react-core/Component"; export var Unbatch = miniCreateClass( function Unbatch(props) { this.state = { child: props.child }; }, Component, { render: function f3() { return this.state.child; } } );