d97a23b699
I believe it was just due to copy/pasting from another file and not renaming it.
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);
|