2017-12-21 18:08:54 -03:00
|
|
|
import { connect } from 'react-redux';
|
2019-06-19 01:05:43 -04:00
|
|
|
import ClaimList from './view';
|
2017-04-23 23:10:45 +07:00
|
|
|
|
2019-06-11 14:10:58 -04:00
|
|
|
const select = state => ({});
|
2017-04-30 23:01:43 +07:00
|
|
|
|
2019-06-11 14:10:58 -04:00
|
|
|
const perform = dispatch => ({});
|
2017-04-30 23:01:43 +07:00
|
|
|
|
2018-10-22 22:02:19 -04:00
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
2019-06-19 01:05:43 -04:00
|
|
|
)(ClaimList);
|