https://github.com/bvaughn/react-virtualized/blob/master/docs/creatingAnInfiniteLoadingList.md
如何将MyComponent
纳入React应用程序?
答案 0 :(得分:1)
我认为令人困惑的部分是在函数参数中执行了解构。它基本上是一个反应组件 - 函数采用道具和返回JSX元素。但是,您需要props
解构,而不是props
参数,因此您不必键入props.abc
,只需键入abc
。
ES 6功能 - 此处有更多信息:https://simonsmith.io/destructuring-objects-as-function-parameters-in-es6/