import { connect } from 'react-redux';
import ClaimList from './view';

const select = state => ({});

const perform = dispatch => ({});

export default connect(
  select,
  perform
)(ClaimList);