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

11 lines
225 B
TypeScript
Raw Normal View History

2023-06-07 04:19:00 +00:00
import style from './styles/header.scss'
2023-06-08 05:27:32 +00:00
import { QuartzComponentProps } from "./types"
2023-06-01 23:05:14 +00:00
2023-06-08 05:27:32 +00:00
export default function Header({ children }: QuartzComponentProps) {
2023-06-01 23:05:14 +00:00
return <header>
2023-06-08 05:27:32 +00:00
{children}
2023-06-01 23:05:14 +00:00
</header>
}
2023-06-03 19:07:19 +00:00
2023-06-08 05:27:32 +00:00
Header.css = style