created react structure

This commit is contained in:
2025-08-11 12:33:59 +02:00
parent cb5df58a37
commit 38b02c186f
3 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
import React from "react";
const Header: React.FC = () => {
return (
<header>
<h1>Header</h1>
</header>
);
};
export default Header;