//checkin checkout date 형식 변환
//Wed Apr 20 2022 00:00:00 GMT+0200 => 2022-04-20
export const DateFormat = (d1) => {
const date = new Date(d1);
const year = date.getFullYear();
const month = ("0" + (1 + date.getMonth())).slice(-2);
const day = ("0" + date.getDate()).slice(-2);
return `${year}-${month}-${day}`;
};