guesstimate/src/components/header/index.tsx

32 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-04-20 11:14:46 +02:00
import { FunctionalComponent, h } from "preact";
2020-04-22 22:07:52 +02:00
import style from "./style.module.css";
2020-04-20 11:14:46 +02:00
2020-04-21 14:10:50 +02:00
export interface HeaderProps {
class?: string
}
const Header: FunctionalComponent<HeaderProps> = ({ ...props}) => {
2020-04-20 11:14:46 +02:00
return (
2020-04-22 22:07:52 +02:00
<div class={`container ${style.header} ${props.class ? props.class : ''}`}>
2020-04-20 11:14:46 +02:00
<div class="columns">
<div class="column">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<h1 class="title is-size-4"> Guesstimate</h1>
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
</nav>
</div>
</div>
</div>
);
};
export default Header;