Created the PageTitle.jsx

This commit is contained in:
Mathias Wagner 2023-06-08 23:32:20 +02:00
parent a5500f3e77
commit b4e115786a

View File

@ -0,0 +1,10 @@
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import {faBookAtlas} from "@fortawesome/free-solid-svg-icons";
import "./styles.sass";
export const PageTitle = () => (
<div className="page-title">
<FontAwesomeIcon icon={faBookAtlas} />
<h1>CountryGuessr</h1>
</div>
)