sundylink
Results
3
comments of
sundylink
const hoc1 = (data) => (wrapperComponent) => { return class extends Component { render() { console.log('hoc1'); return } } }; const hoc2 = (data) => (wrapperComponent) => { return class...
@sunyongjian `我加了 f1, g1 两个 console,这里的执行顺序的确是先 f1,后 g1,这跟你的理解是一样的。` compose(f, g), 那输出应该是: g1 ,f1 才对吧,
@squallliu @gadzan @hzlzh @xland