import React from 'react'; import {connect} from 'react-redux'; class Repeat extends React.Component { constructor(props) { super(props); this.handleClick = this.handleClick.bind(this); } handleClick() { this.props.dispatch({type: 'TOGGLE_REPEAT'}); } render() { return
; } } module.exports = connect((state) => state.media)(Repeat);