7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
const calendarStatus = {
|
|
FREE: "Free",
|
|
BUSY: "Busy",
|
|
TENTATIVE: "Tentative",
|
|
OUT_OF_THE_OFFICE: "OutOfTheOffice",
|
|
};
|
|
export { calendarStatus };
|