quartz-research-note/quartz/components/Header.tsx

15 lines
276 B
TypeScript
Raw Normal View History

2023-06-01 23:05:14 +00:00
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>
}