tab-seperated modals + eslint fix + much more bug fixed and improvements

This commit is contained in:
Daniel
2023-06-10 02:01:14 +03:30
parent dcdef77387
commit 2df4aad077
64 changed files with 713 additions and 373 deletions
+1 -4
View File
@@ -1,6 +1,5 @@
import { signIn } from "next-auth/react";
import Link from "next/link";
import { useRouter } from "next/router";
import { useState } from "react";
interface FormData {
@@ -8,9 +7,7 @@ interface FormData {
password: string;
}
export default function () {
const router = useRouter();
export default function Login() {
const [form, setForm] = useState<FormData>({
email: "",
password: "",