mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
14 lines
408 B
JavaScript
14 lines
408 B
JavaScript
import { connect } from 'react-redux';
|
|
import { setMovieTableOption } from 'Store/Actions/indexerIndexActions';
|
|
import IndexerIndexHeader from './IndexerIndexHeader';
|
|
|
|
function createMapDispatchToProps(dispatch, props) {
|
|
return {
|
|
onTableOptionChange(payload) {
|
|
dispatch(setMovieTableOption(payload));
|
|
}
|
|
};
|
|
}
|
|
|
|
export default connect(undefined, createMapDispatchToProps)(IndexerIndexHeader);
|