Init NextJS, Implement Login and more

This commit is contained in:
2026-01-28 11:33:28 +01:00
parent a471b28121
commit 2666c5cd32
36 changed files with 7242 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import {ResponseToken} from "@/app/actions/interfaces";
export type FormState =
| {
errors?: {
name?: string[]
password?: string[]
}
message?: ResponseToken
}
| undefined