我应该在下面的示例中为JSDoc @param块添加什么,以便我的IntelliJ Webstorm IDE停止抛出错误:Argument Type ComponentClass<undefined>
不能分配给参数类型??? ......`?
/**
* Renders the passed component into a div
* @param { ??? } component // Question: <<<
*/
const myRenderFunc = (component) => (
<div>{component}</div>
)
答案 0 :(得分:2)
您的React组件@param
类型应为{ReactElement}