public_notes/quartz/components/Header.tsx

11 lines
225 B
TypeScript
Raw Normal View History

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