From 4587ea47afceac3dc703c76318c71356950ece0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EA=B8=B0=EC=98=81?= Date: Wed, 17 Jul 2024 13:15:43 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20ArticleLink=20=EB=A7=81=ED=81=AC=20?= =?UTF-8?q?=EA=B8=B0=EB=8A=A5=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/ArticleLink/ArticleLink.jsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/ArticleLink/ArticleLink.jsx b/frontend/src/components/ArticleLink/ArticleLink.jsx index 739d8fe..21b9749 100644 --- a/frontend/src/components/ArticleLink/ArticleLink.jsx +++ b/frontend/src/components/ArticleLink/ArticleLink.jsx @@ -1,10 +1,14 @@ +import { Link } from 'react-router-dom'; import styles from './ArticleLink.module.css'; -export default function ArticleLink() { +export default function ArticleLink({ path, title, noticeDate }) { return ( -
- 공지사항 - 07-12 14:34 -
+ + {title} + {noticeDate} + ); }