department-of-veterans-affairs/vets-website

View on GitHub
src/applications/accredited-representative-portal/accreditation/21a/constants/jurisdictions.js

Summary

Maintainability
A
0 mins
Test Coverage
export const jurisdictions = [
  { name: 'Alabama', website: 'https://www.alabar.org/' },
  { name: 'Alaska', website: 'https://alaskabar.org/' },
  { name: 'American Samoa', website: 'https://asbar.org/' },
  { name: 'Arizona', website: 'https://www.azbar.org/' },
  { name: 'Arkansas', website: 'https://www.arkbar.com/home' },
  { name: 'California', website: 'https://www.calbar.ca.gov/' },
  { name: 'Colorado', website: 'https://www.cobar.org/' },
  { name: 'Connecticut', website: 'https://www.ctbar.org/' },
  { name: 'Delaware', website: 'https://www.dsba.org/' },
  { name: 'District of Columbia', website: 'https://www.dcbar.org/' },
  { name: 'Florida', website: 'https://www.floridabar.org/' },
  { name: 'Georgia', website: 'https://www.gabar.org/' },
  { name: 'Guam', website: 'https://guambar.org/' },
  { name: 'Hawaii', website: 'https://hsba.org/' },
  { name: 'Idaho', website: 'https://isb.idaho.gov/' },
  { name: 'Illinois', website: 'https://www.isba.org/' },
  { name: 'Indiana', website: 'https://www.inbar.org/' },
  { name: 'Iowa', website: 'https://www.iowabar.org/' },
  { name: 'Kansas', website: 'https://ksbar.org/' },
  { name: 'Kentucky', website: 'https://www.kybar.org/' },
  { name: 'Louisiana', website: 'https://www.lsba.org/' },
  { name: 'Maine', website: 'https://www.mainebar.org/' },
  { name: 'Maryland', website: 'https://www.msba.org/' },
  { name: 'Massachusetts', website: 'https://www.massbar.org/' },
  { name: 'Michigan', website: 'https://www.michbar.org/' },
  { name: 'Minnesota', website: 'https://www.mnbar.org/' },
  { name: 'Mississippi', website: 'https://www.msbar.org/' },
  { name: 'Missouri', website: 'https://mobar.org/' },
  { name: 'Montana', website: 'https://www.montanabar.org/' },
  { name: 'Nebraska', website: 'https://www.nebar.com/' },
  { name: 'Nevada', website: 'https://nvbar.org/' },
  { name: 'New Hampshire', website: 'https://www.nhbar.org/' },
  { name: 'New Jersey', website: 'https://tcms.njsba.com/' },
  { name: 'New Mexico', website: 'https://www.sbnm.org/' },
  { name: 'New York', website: 'https://nysba.org/' },
  { name: 'North Carolina', website: 'https://www.ncbar.org/' },
  { name: 'North Dakota', website: 'https://www.sband.org/' },
  {
    name: 'Northern Mariana Islands',
    website: 'https://www.cnmibar.com/',
  },
  { name: 'Ohio', website: 'https://www.ohiobar.org/' },
  { name: 'Oklahoma', website: 'https://www.okbar.org/' },
  { name: 'Oregon', website: 'https://www.osbar.org/' },
  { name: 'Pennsylvania', website: 'https://www.pabar.org/' },
  { name: 'Puerto Rico', website: 'https://capr.org/' },
  { name: 'Rhode Island', website: 'https://ribar.com/' },
  { name: 'South Carolina', website: 'https://www.scbar.org/' },
  {
    name: 'South Dakota',
    website: 'https://www.statebarofsouthdakota.com/',
  },
  { name: 'Tennessee', website: 'https://www.tba.org/' },
  { name: 'Texas', website: 'https://www.texasbar.com/' },
  { name: 'Utah', website: 'https://www.utahbar.org/' },
  { name: 'Vermont', website: 'https://www.vtbar.org/' },
  { name: 'Virgin Islands', website: 'https://www.usvibar.org/' },
  { name: 'Virginia', website: 'https://www.vsb.org/' },
  { name: 'Washington', website: 'https://www.wsba.org/' },
  { name: 'West Virginia', website: 'https://wvbar.org/' },
  { name: 'Wisconsin', website: 'https://wisbar.org' },
  { name: 'Wyoming', website: 'https://www.wyomingbar.org/' },
  { name: 'Other', website: '' },
];

export const jurisdictionOptions = jurisdictions.map(
  jurisdiction => jurisdiction.name,
);