add cards table and pagination

This commit is contained in:
2023-10-07 23:44:20 +02:00
parent 450d664f34
commit 33f3fc6137
21 changed files with 635 additions and 52 deletions

View File

@@ -0,0 +1,5 @@
export function formatDate(date: string | undefined) {
if (!date) return ''
return new Date(date).toLocaleDateString('ru-RU')
}