We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97743e9 commit 70e4ce0Copy full SHA for 70e4ce0
quartz/components/pages/Blogs.tsx
@@ -0,0 +1,15 @@
1
+import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "../types"
2
+import style from "./styles/navigationheader.scss"
3
+
4
+interface Options {
5
+ links: Record<string, string>
6
+ components: QuartzComponent[]
7
+}
8
9
+export default ((opts?: Options) => {
10
+ const Blogs: QuartzComponent = (props: QuartzComponentProps) => {
11
+ return <div>Blogs Page</div>
12
+ }
13
14
+ return Blogs
15
+}) satisfies QuartzComponentConstructor
0 commit comments