Is namespacing own-props separately from state-props a useful pattern?
问题 Is the following pattern of namespacing state-provided props and parent-provided props a useful pattern? interface OwnProps { //The type for the props provided by the parent component } function mapDispatch(dispatch: Dispatch<any>) { return {dispatch}; } function mapState(state: RootState, ownProps: OwnProps) { return { o: {...ownProps}, // ownProps are namespaced onto o. s: { // stateProps are namespaced onto s. apiInReach: state.dev.apiInReach, } }; } //// ... export default connect(