We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe7a3b6 commit cacfb4dCopy full SHA for cacfb4d
1 file changed
src/components/Follows/FollowsContainer.tsx
@@ -1,7 +1,7 @@
1
'use client';
2
3
import { useRouter } from 'next/navigation';
4
-
+import { FaPersonCircleXmark } from 'react-icons/fa6';
5
import { useGetFollowPosts } from '@/hooks/apis/Follows/useGetFollowPostsQuery';
6
import { useInfiniteScroll } from '@/hooks/useInfiniteScroll';
7
import { FollowsSkeleton } from '../Skeletons/FollowsSkeleton';
@@ -44,7 +44,10 @@ export const FollowsContainer = () => {
44
<div ref={observerRef} style={{ height: '1px' }} />
45
</div>
46
) : (
47
- <div>게시글이 없습니다.</div>
+ <div className="flex-center h-screen flex-col gap-30 overflow-hidden">
48
+ <FaPersonCircleXmark className="mb-4 size-150 text-gray-400" />
49
+ <div className="text-center">팔로워 게시글이 없습니다.</div>
50
+ </div>
51
)}
52
53
</PageContainer>
0 commit comments