/**
* server root url
*/
const SERVER_ROOT_URL = "http://localhost:8080/";
/**
* institution images url
*/
export const INSTITUTIONS_IMAGES_URL = SERVER_ROOT_URL + "institutions_images/";
/**
* exhibits images url
*/
export const EXHIBITS_IMAGES_URL = SERVER_ROOT_URL + "exhibits_images/";
/**
* info labels images url
*/
export const INFO_LABELS_IMAGES_URL = SERVER_ROOT_URL + "info_labels_images/";
/**
* label showed in select boxes when nothing is selected
*/
export const NOTHING_SELECTED_LABEL = "Select...";