mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-26 23:13:29 +00:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
import { connect } from 'react-redux';
|
|
import Comment from './view';
|
|
|
|
const select = (state, props) => ({});
|
|
|
|
const perform = dispatch => ({});
|
|
|
|
export default connect(select, perform)(Comment);
|