import { h, Component } from 'preact' import { connect } from 'react-redux' function Player(props) { const className = props.fullscreen ? 'player fullscreen' : 'player' return (
) } const mapStateToProps = state => ({ }) const mapDispatchToProps = (dispatch, ownProps) => ({ }) export default connect(mapStateToProps, mapDispatchToProps)(Player)