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