Skip to content

Commit 70e4ce0

Browse files
New Page Blogs for Displaying the total Pattern Blogs - Experimental
1 parent 97743e9 commit 70e4ce0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

quartz/components/pages/Blogs.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)