import React, { useState } from "react"; import { Button, Input } from "antd"; import useAuth from "../../useAuth"; import { useNavigate } from "react-router"; export const LogIn = () => { const { login, loading, error } = useAuth(); const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); const navigate = useNavigate(); console.log(error) return (