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
|
|
|
|
2025-01-26 10:49:23 +08:00
|
|
|
return <div className="shadow-elegant border-2 border-white rounded-xl bg-slate-200">
|
2025-01-26 08:26:17 +08:00
|
|
|
|
|
|
|
<PostDetail id={id}></PostDetail>
|
|
|
|
</div>;
|
2025-01-22 23:19:51 +08:00
|
|
|
}
|