Clean code

This commit is contained in:
2023-06-14 15:30:16 +02:00
parent 71db3339d8
commit 6f58e767a2
3 changed files with 5 additions and 18 deletions

View File

@ -35,15 +35,6 @@ function Copyright(props: any) {
}
export function BaseLoginPage() {
const handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault();
const data = new FormData(event.currentTarget);
console.log({
email: data.get("email"),
password: data.get("password"),
});
};
return (
<Grid container component="main" sx={{ height: "100vh" }}>
<CssBaseline />