CoastalCommitsPastes/client/app/(posts)/new/from/[id]/page.tsx

24 lines
412 B
TypeScript
Raw Normal View History

2022-11-12 01:28:06 -08:00
import NewPost from "../../components/new"
import { notFound } from "next/navigation"
2022-11-12 01:28:06 -08:00
import { getPostById } from "@lib/server/prisma"
2022-11-09 23:11:36 -08:00
const NewFromExisting = async ({
params
}: {
params: {
id: string
}
}) => {
const { id } = params
if (!id) {
return notFound()
}
2022-11-12 01:28:06 -08:00
const post = await getPostById(id, true)
2022-11-12 18:39:03 -08:00
return <NewPost initialPost={post} newPostParent={id} />
2022-11-09 18:38:05 -08:00
}
export default NewFromExisting