Skip to content

Commit

Permalink
added link to Spanish language
Browse files Browse the repository at this point in the history
  • Loading branch information
raffazizzi committed Apr 3, 2023
1 parent 8819a8b commit 6fcf383
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,15 @@ export default class Header extends Component {
<div style={{position: 'relative'}}>
<div className="mdc-menu mdc-menu-surface" tabIndex="-1" ref="lang">
<ul className="mdc-list" role="menu" aria-hidden="true">
<li className="mdc-list-item" role="menuitem" tabIndex="0" onClick={()=>{
this.props.setLanguage('de')
}}>Deutsch</li>
<li className="mdc-list-item" role="menuitem" tabIndex="0" onClick={()=>{
this.props.setLanguage('en')
}}>English</li>
<li className="mdc-list-item" role="menuitem" tabIndex="0" onClick={()=>{
this.props.setLanguage('de')
}}>Deutsch</li>
this.props.setLanguage('es')
}}>Español</li>
<li className="mdc-list-item" role="menuitem" tabIndex="0" onClick={()=>{
this.props.setLanguage('fr')
}}>Français</li>
Expand Down

0 comments on commit 6fcf383

Please sign in to comment.