/* @refresh reload */ import { type Component, Show } from "solid-js"; import type { TitleProps } from "../types/interfaces"; import { Icon } from "solid-heroicons"; import { chevronLeft } from "solid-heroicons/solid"; import { Link } from "./link"; const Header: Component = ({ className, title }) => { return (

{ title }

Av Martin Berg Alstad

); }; export default Header;