Added navigational link to repo's history

This commit is contained in:
Philipp Czora
2018-09-17 16:51:09 +02:00
parent c5da25a1b4
commit 2af345bba0
4 changed files with 11 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ class DropDown extends React.Component<Props> {
render() {
const {options, preselectedOption} = this.props;
return <select value={preselectedOption} onChange={this.change}>
<option key=""> </option>
{options.map(option => {
return <option key={option}
value={option}>{option}</option>