命名导出 withRouter()

Named export withRouter()

我想导出组件 withRouter() 但我需要它没有默认的命名

export default withRouter(TopNav); 

我试过了

export {TopNav} withRouter(TopNav); 

我从 linter 得到的错误是...

Use of default exports is forbidden (no-default-export)tslint(1) is there a way name the export?

必须声明命名导出,这样您就可以这样做:

export const TopNavWithRouter = withRouter(TopNav);