mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-06-17 02:06:39 +00:00
12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
import { QuartzComponentProps } from "./types"
|
|
|
|
export default function ArticleTitle({ fileData }: QuartzComponentProps) {
|
|
const title = fileData.frontmatter?.title
|
|
const displayTitle = fileData.slug === "index" ? undefined : title
|
|
if (displayTitle) {
|
|
return <h1>{displayTitle}</h1>
|
|
} else {
|
|
return null
|
|
}
|
|
}
|