New: Identify indexers that are already setup in add list

This commit is contained in:
Qstick
2022-01-17 19:24:52 -06:00
parent 1cbf61f4db
commit 76daee3a1b
7 changed files with 58 additions and 18 deletions
@@ -0,0 +1,18 @@
import { connect } from 'react-redux';
import { createSelector } from 'reselect';
import createExistingIndexerSelector from 'Store/Selectors/createExistingIndexerSelector';
import SelectIndexerRow from './SelectIndexerRow';
function createMapStateToProps() {
return createSelector(
createExistingIndexerSelector(),
(isExistingIndexer, dimensions) => {
return {
isExistingIndexer
};
}
);
}
export default connect(createMapStateToProps)(SelectIndexerRow);