keroosha.cybergulag.today/quartz/components/Header.tsx

11 lines
225 B
TypeScript
Raw Normal View History

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