-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cisagov:master' into DarkMode
- Loading branch information
Showing
4 changed files
with
210 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
export const STATE_OPTIONS = [ | ||
'Alabama', | ||
'Alaska', | ||
'American Samoa', | ||
'Arizona', | ||
'Arkansas', | ||
'California', | ||
'Colorado', | ||
'Commonwealth Northern Mariana Islands', | ||
'Connecticut', | ||
'Delaware', | ||
'District of Columbia', | ||
'Federal States of Micronesia', | ||
'Florida', | ||
'Georgia', | ||
'Guam', | ||
'Hawaii', | ||
'Idaho', | ||
'Illinois', | ||
'Indiana', | ||
'Iowa', | ||
'Kansas', | ||
'Kentucky', | ||
'Louisiana', | ||
'Maine', | ||
'Maryland', | ||
'Massachusetts', | ||
'Michigan', | ||
'Minnesota', | ||
'Mississippi', | ||
'Missouri', | ||
'Montana', | ||
'Nebraska', | ||
'Nevada', | ||
'New Hampshire', | ||
'New Jersey', | ||
'New Mexico', | ||
'New York', | ||
'North Carolina', | ||
'North Dakota', | ||
'Ohio', | ||
'Oklahoma', | ||
'Oregon', | ||
'Pennsylvania', | ||
'Puerto Rico', | ||
'Republic of Marshall Islands', | ||
'Rhode Island', | ||
'South Carolina', | ||
'South Dakota', | ||
'Tennessee', | ||
'Texas', | ||
'Utah', | ||
'Vermont', | ||
'Virgin Islands', | ||
'Virginia', | ||
'Washington', | ||
'West Virginia', | ||
'Wisconsin', | ||
'Wyoming' | ||
]; | ||
|
||
export const STATE_ABBREVIATED_OPTIONS = [ | ||
'AL', // Alabama | ||
'AK', // Alaska | ||
'AS', // American Samoa | ||
'AZ', // Arizona | ||
'AR', // Arkansas | ||
'CA', // California | ||
'CO', // Colorado | ||
'MP', // Commonwealth Northern Mariana Islands | ||
'CT', // Connecticut | ||
'DE', // Delaware | ||
'DC', // District of Columbia | ||
'FM', // Federal States of Micronesia | ||
'FL', // Florida | ||
'GA', // Georgia | ||
'GU', // Guam | ||
'HI', // Hawaii | ||
'ID', // Idaho | ||
'IL', // Illinois | ||
'IN', // Indiana | ||
'IA', // Iowa | ||
'KS', // Kansas | ||
'KY', // Kentucky | ||
'LA', // Louisiana | ||
'ME', // Maine | ||
'MD', // Maryland | ||
'MA', // Massachusetts | ||
'MI', // Michigan | ||
'MN', // Minnesota | ||
'MS', // Mississippi | ||
'MO', // Missouri | ||
'MT', // Montana | ||
'NE', // Nebraska | ||
'NV', // Nevada | ||
'NH', // New Hampshire | ||
'NJ', // New Jersey | ||
'NM', // New Mexico | ||
'NY', // New York | ||
'NC', // North Carolina | ||
'ND', // North Dakota | ||
'OH', // Ohio | ||
'OK', // Oklahoma | ||
'OR', // Oregon | ||
'PA', // Pennsylvania | ||
'PR', // Puerto Rico | ||
'MH', // Republic of Marshall Islands | ||
'RI', // Rhode Island | ||
'SC', // South Carolina | ||
'SD', // South Dakota | ||
'TN', // Tennessee | ||
'TX', // Texas | ||
'UT', // Utah | ||
'VT', // Vermont | ||
'VI', // Virgin Islands | ||
'VA', // Virginia | ||
'WA', // Washington | ||
'WV', // West Virginia | ||
'WI', // Wisconsin | ||
'WY' // Wyoming | ||
]; |