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