add header component

This commit is contained in:
DerTyp7
2023-10-09 16:11:08 +02:00
parent 43f717f9a0
commit 448a4f137f
7 changed files with 81 additions and 8 deletions

10
src/App.tsx Normal file
View File

@@ -0,0 +1,10 @@
import "@styles/App.scss";
import Header from "@components/Header";
export default function App() {
return (
<div id="app">
<Header />
</div>
);
}