我在React中使用loadable来动态加载我的组件。因此,我正在导出每个组件的索引,并将它们导入到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,请对其进行投票以使其在修复后得到通知
关于reactjs - 导出WebStorm中未使用的默认值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54687009/