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

14 lines
413 B
TypeScript
Raw Normal View History

2023-06-12 06:46:38 +00:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-10 06:06:02 +00:00
2023-06-12 06:46:38 +00:00
function ArticleTitle({ fileData }: QuartzComponentProps) {
2023-06-10 06:06:02 +00:00
const title = fileData.frontmatter?.title
const displayTitle = fileData.slug === "index" ? undefined : title
if (displayTitle) {
return <h1>{displayTitle}</h1>
} else {
return null
}
}
2023-06-12 06:46:38 +00:00
export default (() => ArticleTitle) satisfies QuartzComponentConstructor