导出默认值未在WebStorm中使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了导出默认值未在WebStorm中使用相关的知识,希望对你有一定的参考价值。
我在React中使用可加载来动态加载我的组件。所以我正在导出每个组件的索引并将它们导入app.js.但问题是我在WebStorm中仍然遇到错误,即导出默认值在单个组件索引文件中未使用。
这是我的代码。这是在我的App.js文件中。
const HomeIndex = Loadable({
loader: () => import('./components/home/Index'),
loading: () => <div> </div>,
});
我的组件索引文件。
export default class HomeIndex extends React.Component {
fetchCounts = () =>{
this.counts.fetchCounts();
};
render(){
return(
<div className="pageView">
<Counts ref={refs => { this.counts = refs; }}/>
<hr/>
<Customers fetchCounts={this.fetchCounts}/>
</div>
)
}
}
WebStorm中的错误屏幕截图:
答案
记录为WEB-37294,请投票给它,以便在修复时得到通知
以上是关于导出默认值未在WebStorm中使用的主要内容,如果未能解决你的问题,请参考以下文章
RegSetValueEx返回成功,但是注册表值未在regedit中更新