Created the LoginHeader.jsx component

This commit is contained in:
Mathias Wagner 2023-04-18 19:01:03 +02:00
parent ce820ee546
commit 8cc330fb8b
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,8 @@
import "./styles.sass";
export const LoginHeader = () => (
<div className="login-header">
<img src="/logo.png" alt="logo" />
<h1>QuickByte</h1>
</div>
)