我正在寻找有关如何干净地格式化多个嵌套的 connect 和 graphql 语句以提高可读性和易于键入的建议。如您所见,包装每个调用看起来非常笨拙。当您有多个嵌套的 connect/graphql 语句时,是否有建议的快捷方式/技巧/格式?
connect(mapStateToProps, mapDispatchToProps)(graphql(signinUserGql, {name: 'signIn'})(graphql(registerUserGql, {name:'register'})(LoginScreen)));