1
0

Created the Header.jsx

This commit is contained in:
Mathias Wagner 2023-11-18 17:41:07 +01:00
parent ef6dde7e94
commit 6861a67bf9
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,12 @@
import "./styles.sass";
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import {faIndustry} from "@fortawesome/free-solid-svg-icons";
export const Header = () => {
return (
<header>
<FontAwesomeIcon icon={faIndustry} />
<h1>Der vollkommene Markt</h1>
</header>
)
}