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

9 lines
195 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import Comment from './view';
const select = (state, props) => ({});
const perform = dispatch => ({});
export default connect(select, perform)(Comment);