From cba6558caf32c92a6653121d4988a487700e03a6 Mon Sep 17 00:00:00 2001 From: Shin Wonse <62709718+shinwonse@users.noreply.github.com> Date: Mon, 30 Sep 2024 22:21:59 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B0=9C=EB=B0=9C=20=EC=84=9C=EC=A0=81=20?= =?UTF-8?q?=EC=9D=BD=EA=B8=B0=20=EC=84=B9=EC=85=98=20UI=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/components/BookSection/BookSection.tsx | 4 ++-- src/app/components/PostPreview/PostPreview.tsx | 8 ++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/app/components/BookSection/BookSection.tsx b/src/app/components/BookSection/BookSection.tsx index 0c73dbb..7f9dd93 100644 --- a/src/app/components/BookSection/BookSection.tsx +++ b/src/app/components/BookSection/BookSection.tsx @@ -6,9 +6,9 @@ async function BookSection() { const books = await Promise.resolve(getBooks()); return ( -
+

개발 서적 읽기

-
+
{books.map((book) => ( +
👋 @@ -22,7 +18,7 @@ function PostPreview({ author, coverImage, title }: Props) {

{title}

{author}
- +
); }