Created
September 11, 2020 10:51
-
-
Save fredriccliver/4da461fb64a858f486ed3092f0bc093c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Constants from "./constants" | |
let localeSelect = document.querySelector<HTMLSelectElement>("#locale-select") | |
Constants.localeList.forEach((locale) => { | |
localeSelect?.add(new Option(locale.label, locale.value)) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment