mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-16 03:35:16 +00:00
8 lines
274 B
JavaScript
8 lines
274 B
JavaScript
|
// Merges react-redux props.
|
||
|
export function mergeProps (stateProps, dispatchProps, ownProps) {
|
||
|
Object.assign({}, ownProps, {
|
||
|
dispatch: Object.assign({}, dispatchProps, ownProps.dispatch || {}),
|
||
|
state: Object.assign({}, stateProps, ownProps.state || {}),
|
||
|
});
|
||
|
}
|