Skip to content

Commit

Permalink
未実装機能の取り外し
Browse files Browse the repository at this point in the history
  • Loading branch information
takecchi committed Dec 20, 2023
1 parent 3b26184 commit cf1c08f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/app/(menu)/_components/timeline/layouts/Post.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import { CardActionArea, 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';
import ReplyButton from '@/app/(menu)/_components/timeline/elements/ReplyButton';
import ShareButton from '@/app/(menu)/_components/timeline/elements/ShareButton';
import { useRouter } from 'next/navigation';
import MomentAgo from '@/app/(menu)/_components/timeline/elements/MomentAgo';
import { format } from 'date-fns';
Expand Down Expand Up @@ -97,7 +95,6 @@ export default function Post({
text,
postId,
postedAt,
replyCount,
favorited,
favoriteCount,
reposted,
Expand Down Expand Up @@ -150,7 +147,7 @@ export default function Post({
{text}
</Typography>
<Footer>
<ReplyButton count={replyCount} />
<div>{/*リプライボタン*/}</div>
<RepostButton
postId={postId}
reposted={reposted}
Expand All @@ -161,7 +158,7 @@ export default function Post({
favorited={favorited}
favoriteCount={favoriteCount}
/>
<ShareButton />
<div>{/*シェアボタン*/}</div>
</Footer>
</Content>
</Original>
Expand Down

0 comments on commit cf1c08f

Please sign in to comment.