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