Perform security checks on the login popup to minimize bugs in unexpected situations.
8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
import React from "react";
|
|
|
|
const Login = () => {
|
|
return <div>This is login flow</div>;
|
|
};
|
|
|
|
export default Login;
|