refactor: rename to Login

This commit is contained in:
karishmas6
2024-09-25 13:20:25 +05:30
parent 1117e2836d
commit cec1a97d4e

View File

@@ -11,7 +11,7 @@ import {
} from '@mui/material'; } from '@mui/material';
import { useGlobalInfoStore } from "../context/globalInfo"; import { useGlobalInfoStore } from "../context/globalInfo";
const SignIn = () => { const Login = () => {
const [form, setForm] = useState({ const [form, setForm] = useState({
email: '', email: '',
password: '', password: '',
@@ -122,4 +122,4 @@ const SignIn = () => {
); );
}; };
export default SignIn; export default Login;