Skip to content

Commit 3185a2c

Browse files
committed
fix nextjs typing
1 parent 51808f8 commit 3185a2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/next-rsc-dynamic/app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Link from 'next/link'
2-
import { allPosts, Post } from 'contentlayer/generated'
2+
import { allPosts } from 'contentlayer/generated'
33

4-
export default async function Home({ params }: { params: { tag: string } }) {
4+
export default async function Home() {
55
return (
66
<div className="py-8 mx-auto max-w-xl">
77
<h1 className="mb-8 text-3xl font-bold text-center">Next.js docs</h1>

0 commit comments

Comments
 (0)