Added the Login page to the App.jsx

This commit is contained in:
Mathias Wagner 2023-04-17 22:26:50 +02:00
parent 6fb26f9077
commit 3da96f090b
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,9 +1,10 @@
import "@styles/root.sass"
import Login from "@/pages/Login";
export default () => {
return (
<div className="main">
<Login />
</div>
)
}