lbry-desktop/ui/component/claimList/index.js
2019-11-11 13:27:29 -05:00

12 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);