diff --git a/src/app/(menu)/_components/timeline/layouts/Post.tsx b/src/app/(menu)/_components/timeline/layouts/Post.tsx
index 6506ad11..ce8db4ef 100644
--- a/src/app/(menu)/_components/timeline/layouts/Post.tsx
+++ b/src/app/(menu)/_components/timeline/layouts/Post.tsx
@@ -1,6 +1,12 @@
'use client';
-import { CardActionArea, styled, Tooltip, Typography } from '@mui/material';
+import {
+ CardActionArea,
+ Skeleton,
+ styled,
+ Tooltip,
+ Typography,
+} from '@mui/material';
import Link from 'next/link';
import FavoriteButton from '@/app/(menu)/_components/timeline/elements/FavoriteButton';
import RepostButton from '@/app/(menu)/_components/timeline/elements/RepostButton';
@@ -9,6 +15,7 @@ import MomentAgo from '@/app/(menu)/_components/timeline/elements/MomentAgo';
import { format } from 'date-fns';
import AvatarIcon from '@/app/(menu)/_components/timeline/elements/AvatarIcon';
import { isRepost as checkRepost } from '@/app/(menu)/_utils/post.utils';
+import { usePost } from '@/swr/client/post';
const Article = styled('article')`
border-bottom: 1px solid ${({ theme }) => theme.palette.grey[100]};
@@ -74,6 +81,32 @@ const MomentLinks = styled(Link)`
}
`;
+/**
+ * 〇〇さんへの返信
+ * @constructor
+ */
+function ReplyTo({ replyToPostId }: { replyToPostId: string }) {
+ const { data, isLoading } = usePost(replyToPostId);
+
+ if (isLoading) {
+ return