This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
deb9e56
commit edd0f42
Showing
2 changed files
with
88 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import OptionInterface from '@Interface/OptionInterface'; | ||
|
||
const FarmRegionOptions: OptionInterface[] = [ | ||
{ | ||
value: '1', | ||
label: 'Bulkley-Nechako', | ||
}, | ||
{ | ||
value: '3', | ||
label: 'Cariboo', | ||
}, | ||
{ | ||
value: '6', | ||
label: 'Columbia Shuswap', | ||
}, | ||
{ | ||
value: '4', | ||
label: 'Central Kootenay', | ||
}, | ||
{ | ||
value: '9', | ||
label: 'East Kooteay', | ||
}, | ||
{ | ||
value: '13', | ||
label: 'Kootenay Boundary', | ||
}, | ||
{ | ||
value: '10', | ||
label: 'Fraser Valley, East (including Abbotsford/Mission)', | ||
}, | ||
{ | ||
value: '14', | ||
label: 'Fraser Valley, West (Delta to Langley/Maple Ridge)', | ||
}, | ||
{ | ||
value: '9', | ||
label: 'Fraser-Fort George', | ||
}, | ||
{ | ||
value: '12', | ||
label: 'Kitimat-Stikine', | ||
}, | ||
{ | ||
value: '5', | ||
label: 'Central Okanagan', | ||
}, | ||
{ | ||
value: '16', | ||
label: 'North Okanagan', | ||
}, | ||
{ | ||
value: '17', | ||
label: 'Okanagan-Similkameen', | ||
}, | ||
{ | ||
value: '18', | ||
label: 'Peace River', | ||
}, | ||
{ | ||
value: '19', | ||
label: 'Squamish-Lilloeet', | ||
}, | ||
{ | ||
value: '22', | ||
label: 'Powell River/ qathet Region', | ||
}, | ||
{ | ||
value: '23', | ||
label: 'Sunshine Coast', | ||
}, | ||
{ | ||
value: '20', | ||
label: 'Thompson-Nicola', | ||
}, | ||
{ | ||
value: '21', | ||
label: 'Vancouver Island', | ||
}, | ||
{ | ||
value: '2', | ||
label: 'Northern Rockies', | ||
}, | ||
]; | ||
|
||
export default FarmRegionOptions; |