Skip to content

Instantly share code, notes, and snippets.

@fredriccliver
Created September 11, 2020 10:51
Show Gist options
  • Save fredriccliver/4da461fb64a858f486ed3092f0bc093c to your computer and use it in GitHub Desktop.
Save fredriccliver/4da461fb64a858f486ed3092f0bc093c to your computer and use it in GitHub Desktop.
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