export function buildSelectOptions(list: Array) { return list.map((x) => ({ label: x, value: x })); }