import React from "react"; export default (props: Props) => { const { value, handleOnChange } = props; return (
); }; type Props = { value: string; handleOnChange(sortKey: string): void; };