| 12345678910111213141516171819 |
- 'use server';
- import { notFound } from 'next/navigation';
- import View from './view';
- export default async function CommentsView({ params }: { params: { id: string } }) {
- const postID = params.id;
- if (!/^\d+$/.test(postID)) {
- return notFound();
- }
- // 여기서 댓글 목록을 호출
-
- return (
- <View />
- );
- }
|