Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么所有的 Recompose 食谱const { Component } = React;都从不使用时开始Component,或者是吗?
const { Component } = React;
Component
像这样开始食谱有什么意义?
https://github.com/acdlite/recompose/wiki/Recipes
这是因为在代码中使用了 JSX。JSX 被转译为 React.createElement,这显然使用了 React。