2025-01-24 00:19:02 +08:00
|
|
|
import PostDetail from "@web/src/components/models/post/detail/PostDetail";
|
2025-01-22 23:19:51 +08:00
|
|
|
import { useParams } from "react-router-dom";
|
|
|
|
|
|
|
|
export default function LetterDetailPage() {
|
|
|
|
const { id } = useParams();
|
2025-01-24 00:19:02 +08:00
|
|
|
|
|
|
|
return <PostDetail id={id}></PostDetail>;
|
2025-01-22 23:19:51 +08:00
|
|
|
}
|