ee9f63a161
bugfix wip flow fix cleaning clean
11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
import { connect } from 'react-redux';
|
|
import ClaimList from './view';
|
|
import * as SETTINGS from 'constants/settings';
|
|
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
|
|
|
const select = (state) => ({
|
|
searchInLanguage: makeSelectClientSetting(SETTINGS.SEARCH_IN_LANGUAGE)(state),
|
|
});
|
|
|
|
export default connect(select)(ClaimList);
|