import React, { Component } from 'react' import './SortByComponent.css' export class SortByComponent extends Component { constructor(props) { super(props) this.state = { sortBy: 'mostPopular' } } handleChange = (e) => { this.props.changeHandler({sortBy: e.target.value}) } render() { return (
) } } export default SortByComponent