import React from 'react'; import styles from './SortOption.css'; import PropTypes from 'prop-types'; export default class SortOption extends React.Component { render() { return ( ); } } SortOption.propTypes = { // A simple callback to be called when clicking on this sort option. setSort: PropTypes.func.isRequired, // Whether or not this sort option is active. active: PropTypes.bool.isRequired, // Label to show next to the input control. label: PropTypes.string.isRequired, };