quartz-research-note/quartz/components/Header.tsx
2023-06-01 19:05:14 -04:00

15 lines
276 B
TypeScript

import { resolveToRoot } from "../path"
export interface HeaderProps {
title: string
slug: string
}
export default function({ title, slug }: HeaderProps) {
const baseDir = resolveToRoot(slug)
return <header>
<h1><a href={baseDir}>{title}</a></h1>
</header>
}