one attempt with one library

This commit is contained in:
talksik
2022-03-12 16:02:20 -05:00
parent 19cad8fa34
commit 3b9da153ab
7 changed files with 239 additions and 17 deletions
+4 -4
View File
@@ -1,6 +1,7 @@
import "./App.css";
import { Button } from "@mui/material";
import Login from "./pages/Login";
import Logo from "./components/Logo";
import React from "react";
import logo from "./logo.svg";
@@ -10,10 +11,9 @@ testConnection();
function App() {
return (
<div className="container flex flex-col space-y-5 mx-auto my-auto justify-center h-screen">
<Logo />
<Button variant="contained">Sign In</Button>
</div>
<>
<Login />
</>
);
}