From f543f379ca4d9a49446b13d104592ba62b386d61 Mon Sep 17 00:00:00 2001 From: minwucho Date: Thu, 18 Jul 2024 15:11:37 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B0=95=EC=82=AC=EA=B3=B5=EC=A7=80?= =?UTF-8?q?=EC=82=AC=ED=95=AD=EC=83=9D=EC=84=B1=ED=8E=98=EC=9D=B4=EC=A7=80?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CreateQuestionPage/CreateQuestionPage.jsx | 4 +- .../LecturerCreateNoticePage.jsx | 48 +++++++++++++++++++ 2 files changed, 50 insertions(+), 2 deletions(-) create mode 100644 frontend/src/pages/LecturerCreateNoticePage/LecturerCreateNoticePage.jsx diff --git a/frontend/src/pages/CreateQuestionPage/CreateQuestionPage.jsx b/frontend/src/pages/CreateQuestionPage/CreateQuestionPage.jsx index a93dc7f..099b7af 100644 --- a/frontend/src/pages/CreateQuestionPage/CreateQuestionPage.jsx +++ b/frontend/src/pages/CreateQuestionPage/CreateQuestionPage.jsx @@ -38,8 +38,8 @@ export default function CreateQuestionPage() {
diff --git a/frontend/src/pages/LecturerCreateNoticePage/LecturerCreateNoticePage.jsx b/frontend/src/pages/LecturerCreateNoticePage/LecturerCreateNoticePage.jsx new file mode 100644 index 0000000..3af9f25 --- /dev/null +++ b/frontend/src/pages/LecturerCreateNoticePage/LecturerCreateNoticePage.jsx @@ -0,0 +1,48 @@ +import LectureHeader from '../../components/LectureHeader/LectureHeader'; +import { SideBar, SideLink, SideItem } from '../../components/SideBar'; +import { MaxWidthLayout } from '../../components/Layout'; +import { CreateArticle } from '../../components/Article'; + +export default function LecturerCreateNoticePage() { + const lecture = { + title: '정보처리기사 실기 완전정복', + tutor: '박정민', + isLive: true, + }; + return ( + <> + + + +
+ +
+
+ + ); +}