i12e/src/Intro.js

14 lines
407 B
JavaScript

import {Component} from 'react'
class Intro extends Component {
render() {
const intro = {
de: "Alle Länder dieser Erde — welche Bands oder Solo-Musiker aus diesen Ländern kennst Du?",
en: "All the countries in the world — which bands or solo musicians from these countries do you know?"
}
return <div className="intro">{intro[this.props.lang]}</div>
}
}
export {Intro};