improved admin and events tables

This commit is contained in:
z1glr
2025-01-21 12:51:59 +00:00
parent 8fef9b5318
commit 7265a4e36a
17 changed files with 357 additions and 237 deletions

View File

@@ -23,6 +23,10 @@ export interface User {
admin: boolean;
}
export type UserAddModify = User & {
password: string;
};
interface Zustand {
user: User | null;
tasks?: Task[];