export const formatYearMonth = (year: number, month:number): string => { return `${year}-${month<10?"0":""}${month}`; }