lbry-desktop/src/ui/component/claimList/index.js
2019-06-19 01:05:43 -04:00

11 lines
196 B
JavaScript

import { connect } from 'react-redux';
import ClaimList from './view';
const select = state => ({});
const perform = dispatch => ({});
export default connect(
select,
perform
)(ClaimList);