implement setting page (#12)

This commit is contained in:
UUBulb
2024-11-23 21:59:48 +08:00
committed by GitHub
parent f17bdbf760
commit 3b5023061b
21 changed files with 941 additions and 36 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { ModelUser } from "@/types";
import { ModelProfile } from "@/types";
export interface AuthContextProps {
profile: ModelUser | undefined;
profile: ModelProfile | undefined;
login: (username: string, password: string) => void;
logout: () => void;
}