Added header auth page

This commit is contained in:
MaxOvs19 2023-03-09 19:38:56 +03:00
parent a11c85ad14
commit ce2342ff5d
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import React from "react";
import "./authHeader.scss";
export const AuthHeader = ({}) => {
return (
<div className="auth-header">
<div className="auth-header__logo">
<h3>itguild.</h3>
</div>
<div className="auth-header__navigation"></div>
</div>
);
};
export default AuthHeader;