lbry-desktop/ui/component/abandonedChannelPreview/index.js
2021-03-03 12:54:06 -05:00

6 lines
183 B
JavaScript

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