further implementing server page (#4)

* further implementing server page

* optimize icon button

* rename some unnecessary file extensions

* add terminal page & fm card
This commit is contained in:
UUBulb
2024-11-18 20:48:30 +08:00
committed by GitHub
parent f4fbc9f488
commit bf7ffd36e0
25 changed files with 1248 additions and 149 deletions
+7
View File
@@ -0,0 +1,7 @@
import { ModelUser } from "@/types";
export interface AuthContextProps {
profile: ModelUser | undefined;
login: (username: string, password: string) => void;
logout: () => void;
}