8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import ChannelNew from './view';
|
||
|
|
||
|
const select = () => ({});
|
||
|
const perform = () => ({});
|
||
|
|
||
|
export default connect(select, perform)(ChannelNew);
|