move move frontend to progress-test
This commit is contained in:
23
app/javascript/pages/session/SignIn.tsx
Normal file
23
app/javascript/pages/session/SignIn.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import React from "react";
|
||||
|
||||
import { Button } from "../../components";
|
||||
|
||||
export const SignIn = () => {
|
||||
const handleLogin = async () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="w-screen h-screen bg-primary-normal grid place-items-center">
|
||||
<div>
|
||||
<img
|
||||
alt="Logo do Unifeso"
|
||||
src={'unifesoLogo'}
|
||||
style={{ width: "85%", margin: "auto" }}
|
||||
/>
|
||||
<div className="grid place-items-center">
|
||||
<Button onClick={handleLogin}>Faça login no Google</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user