Can Reactjs switch a language change button to a dropdown?
I have implemented i18n into my app and the only way i found to implement the language switch was with a button for every language, like this: <div> {Object.keys(lngs).map((lng) => ( <button key={lng} style={{ fontWeight: i18n.resolvedLanguage === lng ? 'bold'…