improve graphs and table
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
export function getDaysOldDate(days: number) {
|
||||
const date = new Date();
|
||||
date.setDate(date.getDate() - days);
|
||||
return date;
|
||||
}
|
||||
Reference in New Issue
Block a user