feat: form hook

This commit is contained in:
2025-04-23 12:32:27 +03:00
parent 2a7d41bba5
commit c629f0dcf8
7 changed files with 62 additions and 41 deletions

4
src/pages/login.dto.ts Normal file
View File

@@ -0,0 +1,4 @@
export interface ILoginForm {
login: string;
password: string;
}