creating login popup security check

Perform security checks on the login popup to minimize bugs in unexpected situations.
This commit is contained in:
2025-08-17 22:50:24 +07:00
parent b12a3211b6
commit a848d4dcb5
9 changed files with 112 additions and 5 deletions

View File

@ -0,0 +1,7 @@
import React from "react";
const Login = () => {
return <div>This is login flow</div>;
};
export default Login;