1
0
Fork 0

🚧 Work on components

This commit is contained in:
Joost De Cock 2019-05-03 16:51:55 +02:00
parent b9b6556319
commit 71f9075fca
10 changed files with 227 additions and 11 deletions

View file

@ -6,6 +6,7 @@ const LanguageChooser = props => {
const styles = {
container: {
display: "flex",
flexDirection: "row",
height: "calc(100vh - 64px)",
width: "100%"
},
@ -37,7 +38,7 @@ const LanguageChooser = props => {
variant="contained"
onClick={() => changeLanguage(lang)}
>
{languages[lang][lang]}
{languages[lang]}
</Button>
);
})}