Skip to content

Instantly share code, notes, and snippets.

@mikeriley131
Created December 14, 2021 21:21
Show Gist options
  • Save mikeriley131/b2ec4d79554711b92350ad4d1a90e575 to your computer and use it in GitHub Desktop.
Save mikeriley131/b2ec4d79554711b92350ad4d1a90e575 to your computer and use it in GitHub Desktop.
const statesList = [
{
value: 'AL',
label: 'Alabama'
},
{
value: 'AK',
label: 'Alaska'
},
{
value: 'AS',
label: 'American Samoa'
},
{
value: 'AZ',
label: 'Arizona'
},
{
value: 'AR',
label: 'Arkansas'
},
{
value: 'CA',
label: 'California'
},
{
value: 'CO',
label: 'Colorado'
},
{
value: 'CT',
label: 'Connecticut'
},
{
value: 'DE',
label: 'Delaware'
},
{
value: 'DC',
label: 'District of Columbia'
},
{
value: 'FM',
label: 'Federated States of Micronesia'
},
{
value: 'FL',
label: 'Florida'
},
{
value: 'GA',
label: 'Georgia'
},
{
value: 'GU',
label: 'Guam'
},
{
value: 'HI',
label: 'Hawaii'
},
{
value: 'ID',
label: 'Idaho'
},
{
value: 'IL',
label: 'Illinois'
},
{
value: 'IN',
label: 'Indiana'
},
{
value: 'IA',
label: 'Iowa'
},
{
value: 'KS',
label: 'Kansas'
},
{
value: 'KY',
label: 'Kentucky'
},
{
value: 'LA',
label: 'Louisiana'
},
{
value: 'ME',
label: 'Maine'
},
{
value: 'MH',
label: 'Marshall Islands'
},
{
value: 'MD',
label: 'Maryland'
},
{
value: 'MA',
label: 'Massachusetts'
},
{
value: 'MI',
label: 'Michigan'
},
{
value: 'MN',
label: 'Minnesota'
},
{
value: 'MS',
label: 'Mississippi'
},
{
value: 'MO',
label: 'Missouri'
},
{
value: 'MT',
label: 'Montana'
},
{
value: 'NE',
label: 'Nebraska'
},
{
value: 'NV',
label: 'Nevada'
},
{
value: 'NH',
label: 'New Hampshire'
},
{
value: 'NJ',
label: 'New Jersey'
},
{
value: 'NM',
label: 'New Mexico'
},
{
value: 'NY',
label: 'New York'
},
{
value: 'NC',
label: 'North Carolina'
},
{
value: 'ND',
label: 'North Dakota'
},
{
value: 'MP',
label: 'Northern Mariana Islands'
},
{
value: 'OH',
label: 'Ohio'
},
{
value: 'OK',
label: 'Oklahoma'
},
{
value: 'OR',
label: 'Oregon'
},
{
value: 'PW',
label: 'Palau'
},
{
value: 'PA',
label: 'Pennsylvania'
},
{
value: 'PR',
label: 'Puerto Rico'
},
{
value: 'RI',
label: 'Rhode Island'
},
{
value: 'SC',
label: 'South Carolina'
},
{
value: 'SD',
label: 'South Dakota'
},
{
value: 'TN',
label: 'Tennessee'
},
{
value: 'TX',
label: 'Texas'
},
{
value: 'UT',
label: 'Utah'
},
{
value: 'VT',
label: 'Vermont'
},
{
value: 'VI',
label: 'Virgin Islands'
},
{
value: 'VA',
label: 'Virginia'
},
{
value: 'WA',
label: 'Washington'
},
{
value: 'WV',
label: 'West Virginia'
},
{
value: 'WI',
label: 'Wisconsin'
},
{
value: 'WY',
label: 'Wyoming'
},
];
export default statesList;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment