fix: Redesigned user cards

This commit is contained in:
2025-05-21 19:56:25 +02:00
parent 45fb44712e
commit cf2fa0b607
7 changed files with 247 additions and 156 deletions

View File

@@ -1,3 +1,5 @@
import { Moment } from "moment";
export default interface User {
_id: string;
uname: string;
@@ -8,4 +10,5 @@ export default interface User {
fname?: string;
surname?: string;
groups: string[];
regDate: Moment;
}