this repo has no description
at main 16 lines 264 B view raw
1function Header() { 2 return ( 3 <header 4 style={{ 5 backgroundColor: "#007bff", 6 color: "white", 7 padding: "15px", 8 textAlign: "center", 9 }} 10 > 11 <h1>My React Website</h1> 12 </header> 13 ); 14} 15 16export default Header;