为什么所有Recompose配方都以“const {Component} = React;”开头。

时间:2017-12-21 04:49:35

标签: reactjs recompose

为什么所有重组食谱在const { Component } = React;不使用Component时都以class Content extends Model { public function tag() { return $this->belongsTo('App\Tag'); } } class Tag extends Model { public function contents() { return $this->hasMany('App\Content', 'tag'); } } 开头?

这样开始食谱有什么意义?

https://github.com/acdlite/recompose/wiki/Recipes

1 个答案:

答案 0 :(得分:0)

这是因为在代码中使用了JSX。 JSX被转换为React.createElement,它显然使用了React。