diff --git a/src/components/posts/PostList.jsx b/src/components/posts/PostList.jsx index 94e553541e0e473542874919867355e60a866a33..12b5587b23f1703663aea13e9a47747d68b20a77 100644 --- a/src/components/posts/PostList.jsx +++ b/src/components/posts/PostList.jsx @@ -74,6 +74,9 @@ const PostList = ({ onSeen={onPostSeen(item)} /> ))} + {!items.length && ( + <p>Nikdo zatím žádný příspěvek do rozpravy nepřidal. Budeš první?</p> + )} </div> ); };