package components type FormSelect struct { ID string SelectedOption FormSelectOption Label string AllOptions []FormSelectOption } type FormSelectOption struct { Value string Caption string }