diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index dd86848..10300fe 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -102,6 +102,14 @@ function App() { } /> + + + + } + /> ); diff --git a/frontend/src/pages/admin/DetailManageStudent.jsx b/frontend/src/pages/admin/DetailManageStudent.jsx index 21da923..69a9074 100644 --- a/frontend/src/pages/admin/DetailManageStudent.jsx +++ b/frontend/src/pages/admin/DetailManageStudent.jsx @@ -5,6 +5,14 @@ import Header from "../../components/Header"; import style from "./DetailManageStudent.module.css"; import { getStudentDetail } from "../../api/students"; +const weekData = [ + { week: "1주차", title: "Git/HTML/CSS" }, + { week: "2주차", title: "JavaScript/웹 개론" }, + { week: "3주차", title: "Django CRUD/DB 개론" }, + { week: "4주차", title: "Django ORM/Ajax" }, + { week: "5주차", title: "배포/아이디어 기획" }, +]; + const DetailManageStudent = () => { const { studentId } = useParams(); const numericId = Number(studentId); @@ -49,9 +57,13 @@ const DetailManageStudent = () => { 출석 관리 >
- {student.assignmentTitles.map((title, idx) => ( - ))}