guesstimate/client/src/components/header/index.tsx

32 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React, { FunctionComponent } from "react";
import style from "./style.module.css";
export interface HeaderProps {
class?: string
}
const Header: FunctionComponent<HeaderProps> = ({ ...props}) => {
return (
<div className={`container ${style.header} ${props.class ? props.class : ''}`}>
<div className="columns">
<div className="column">
<nav className="navbar" role="navigation" aria-label="main navigation">
<div className="navbar-brand">
<a className="navbar-item" href="/">
<h1 className="title is-size-4"> Guesstimate</h1>
</a>
<a role="button" className="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;