rizaldy.club/quartz/components/Header.tsx

11 lines
225 B
TypeScript
Raw Normal View History

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