import React from "react"; export default (props: SortSelect) => { const { value, handleOnChange } = props; return ( ); }; interface SortSelect { value: string; handleOnChange: Function; }