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