import { FunctionalComponent, h } from "preact"; import style from "./style.module.css"; export interface HeaderProps { class?: string } const Header: FunctionalComponent = ({ ...props}) => { return (
); }; export default Header;