lbry-desktop/ui/component/livestreamList/index.js

7 lines
164 B
JavaScript
Raw Normal View History

2021-04-23 21:59:48 +02:00
import { connect } from 'react-redux';
import LivestreamCurrent from './view';
const select = (state) => ({});
export default connect(select)(LivestreamCurrent);