import React from "react";
import { i18n } from "../../translate/i18n";
import ContainerLogin from "../../components/Base/ContainerLogin";
//! Can i Delete this comment above?
// const Copyright = () => {
// return (
//
// {"Copyleft "}
//
// Canove
// {" "}
// {new Date().getFullYear()}
// {"."}
//
// );
// };
// const useStyles = makeStyles((theme) => ({
// paper: {
// marginTop: theme.spacing(8),
// display: "flex",
// flexDirection: "column",
// alignItems: "center",
// },
// avatar: {
// margin: theme.spacing(1),
// backgroundColor: theme.palette.secondary.main,
// },
// form: {
// width: "100%", // Fix IE 11 issue.
// marginTop: theme.spacing(1),
// },
// submit: {
// margin: theme.spacing(3, 0, 2),
// },
// }));
const Login = () => {
// const classes = useStyles();
// const [user, setUser] = useState({ email: "", password: "" });
// const [showPassword, setShowPassword] = useState(false);
// const { handleLogin } = useContext(AuthContext);
// const handleChangeInput = (e) => {
// setUser({ ...user, [e.target.name]: e.target.value });
// };
// const handlSubmit = (e) => {
// e.preventDefault();
// handleLogin(user);
// };
return (
//
//
//
//
//
//
//
// {i18n.t("login.title")}
//
//
//
// {/* */}
//
teste
teste
Teste paragraph
);
};
export default Login;