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

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);