move move frontend to progress-test

This commit is contained in:
João Geonizeli
2022-07-21 21:16:59 -03:00
parent f8d5d08447
commit 386050d4ad
129 changed files with 159374 additions and 39 deletions

View 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>
);
};