gpt4 book ai didi

reactjs - WebStorm 中未使用的导出默认值

转载 作者:行者123 更新时间:2023-12-03 13:43:46 26 4
gpt4 key购买 nike

我在 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 中的错误屏幕截图:

enter image description here

最佳答案

登录为WEB-37294 ,请投票支持,以便在修复后收到通知

关于reactjs - WebStorm 中未使用的导出默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54687009/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com