Updated the Home.jsx

This commit is contained in:
Mathias Wagner 2023-06-08 23:33:01 +02:00
parent 84dfed83ef
commit 354b43f460

View File

@ -1,7 +1,10 @@
import PageTitle from "@/common/components/PageTitle";
import "./styles.sass";
export const Home = () => {
return (
<>
<h1 style={{color: "#FFFFFF"}}>Home</h1>
</>
<div className="home-page">
<PageTitle />
</div>
)
}