Skip to content

Instantly share code, notes, and snippets.

@MateusAndrade
Last active April 26, 2019 13:51
Show Gist options
  • Save MateusAndrade/9eb10518ed2672089e76466282b92287 to your computer and use it in GitHub Desktop.
Save MateusAndrade/9eb10518ed2672089e76466282b92287 to your computer and use it in GitHub Desktop.
Brazillian States and Distrito Federal array of objects with key, name and value
const states = [
{
value: 'ac',
label: 'Acre',
key: 'ac',
}, {
value: 'al',
label: 'Alagoas',
key: 'al',
}, {
value: 'ap',
label: 'Amapá',
key: 'ap',
}, {
value: 'am',
label: 'Amazonas',
key: 'am',
}, {
value: 'ba',
label: 'Bahia',
key: 'bh',
}, {
value: 'ce',
label: 'Ceára',
key: 'ce',
}, {
value: 'df',
label: 'Distrito Federal',
key: 'df',
}, {
value: 'es',
label: 'Espírito Santo',
key: 'es',
}, {
value: 'go',
label: 'Goías',
key: 'go',
}, {
value: 'ma',
label: 'Maranhão',
key: 'ma',
}, {
value: 'ms',
label: 'Mato Grosso do Sul',
key: 'ms',
}, {
value: 'mt',
label: 'Mato Grosso',
key: 'mt',
}, {
value: 'mg',
label: 'Minas Gerais',
key: 'mg',
}, {
value: 'pa',
label: 'Pará',
key: 'pa',
}, {
value: 'pb',
label: 'Paraíba',
key: 'pb',
}, {
value: 'pr',
label: 'Paraná',
key: 'pr',
}, {
value: 'pe',
label: 'Pernambuco',
key: 'pe',
}, {
value: 'pi',
label: 'Piauí',
key: 'pi',
}, {
value: 'rj',
label: 'Rio de Janeiro',
key: 'rj',
}, {
value: 'rn',
label: 'Rio Grande do Norte',
key: 'rn',
}, {
value: 'rs',
label: 'Rio Grande do Sul',
key: 'rs',
}, {
value: 'ro',
label: 'Rondônia',
key: 'ro',
}, {
value: 'rr',
label: 'Roraima',
key: 'rr',
}, {
value: 'sc',
label: 'Santa Catarina',
key: 'sc',
}, {
value: 'sp',
label: 'São Paulo',
key: 'sp',
}, {
value: 'se',
label: 'Sergipe',
key: 'se',
}, {
value: 'to',
label: 'Tocantins',
key: 'to',
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment