diff --git a/src/shared/components/post-list/index.tsx b/src/shared/components/post-list/index.tsx index 349b7a73..752398d2 100644 --- a/src/shared/components/post-list/index.tsx +++ b/src/shared/components/post-list/index.tsx @@ -22,10 +22,10 @@ export function PostList({ posts, separateByYear = false }: Props) {
{postsByYear.map(postsOfYear => (
-

+

{postsOfYear.year}

-
+
{postsOfYear.posts.map((post, key) => ( ))} @@ -33,7 +33,7 @@ export function PostList({ posts, separateByYear = false }: Props) {
))}
-

+

Others