import React from 'react'; export default class Filters extends React.Component { onCloseClick(e) { if (this.props.onClose) { this.props.onClose(); } } onMinPriceChange (e) { this.props.dispatch({type: 'SET_MIN_PRICE', action: {minPrice: e.target.value}}) } render() { return (