brutal-legends/src/components/sort-select.tsx

25 lines
648 B
TypeScript
Raw Normal View History

2020-03-05 08:07:46 +01:00
import React from "react";
export default (props: SortSelect) => {
const { value, handleOnChange } = props;
return (
<div hidden>
<label htmlFor="sortBy">Sortera efter</label>
<select
id="sortBy"
value={value}
onChange={evt => handleOnChange(evt.target.value)}
>
<option value="id">Inköpsdatum</option>
<option value="artist">Artist</option>
<option value="year">År</option>
</select>
</div>
);
};
interface SortSelect {
value: string;
handleOnChange: Function;
}