15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
|
|
import "./header.css";
|
||
|
|
import { Nav } from "./nav";
|
||
|
|
|
||
|
|
export function Header() {
|
||
|
|
return (
|
||
|
|
<header>
|
||
|
|
<div id="hd-left" className="header-section">
|
||
|
|
<Nav />
|
||
|
|
</div>
|
||
|
|
<div id="hd-middle" className="header-section"></div>
|
||
|
|
<div id="hd-right" className="header-section"></div>
|
||
|
|
</header>
|
||
|
|
);
|
||
|
|
}
|