Skip to content

Instantly share code, notes, and snippets.

@chriswitko
Created June 3, 2023 02:44
Show Gist options
  • Save chriswitko/75e837447794919fd65e0ad824f63256 to your computer and use it in GitHub Desktop.
Save chriswitko/75e837447794919fd65e0ad824f63256 to your computer and use it in GitHub Desktop.
const regions = ['pl']
const displayNames = new Intl.DisplayNames('pl', {type: 'region'})
export default function App() {
return (
<main>
<select>
{regions.map((code) => (
<option key={code} value={code}>{displayNames.of(code)}</option>
))}
</select>
</main>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment