diff --git a/apps/member/src/components/library/BookCard/BookCard.tsx b/apps/member/src/components/library/BookCard/BookCard.tsx index 5990ce92..807f1332 100644 --- a/apps/member/src/components/library/BookCard/BookCard.tsx +++ b/apps/member/src/components/library/BookCard/BookCard.tsx @@ -19,7 +19,7 @@ const BookCard = ({ return (
{title}
diff --git a/apps/member/src/components/library/LibraryNewBooksSection/LibraryNewBooksSection.tsx b/apps/member/src/components/library/LibraryNewBooksSection/LibraryNewBooksSection.tsx
new file mode 100644
index 00000000..911e60d0
--- /dev/null
+++ b/apps/member/src/components/library/LibraryNewBooksSection/LibraryNewBooksSection.tsx
@@ -0,0 +1,42 @@
+import Section from '@components/common/Section/Section';
+import { BookItem } from '@type/book';
+import Image from '@components/common/Image/Image';
+import { Link } from 'react-router-dom';
+import { PATH_FINDER } from '@constants/path';
+
+interface LibraNewBooksSectionProps {
+ data: BookItem[];
+}
+
+const LibraryNewBooksSection = ({ data }: LibraNewBooksSectionProps) => {
+ return (
+ {title}
+ {author} | {publisher}
+