StudyPlanPage.js 603 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
import { useParams } from "react-router-dom";
2
3
import Menu from "../components/Menu/Menu.js";
import BackBtn from "../components/Buttons/BackBtn.js";
4
import Footer from "../components/Footer.js";
Choi Ga Young's avatar
Choi Ga Young committed
5
import AddplanList from "../components/StudyPlan/AddplanList.js";
6

7
const StudyPlanPage = () => {
Choi Ga Young's avatar
Choi Ga Young committed
8
    const { subjectId } = useParams();
9
    return (
10
11
12
        <>
            <Menu />
            <BackBtn />
Choi Ga Young's avatar
Choi Ga Young committed
13
14
            <h2 className="text-center">운영체제</h2>
            <AddplanList />
Choi Ga Young's avatar
Choi Ga Young committed
15
            <Footer pathname={`studyplan/edit/add/${subjectId}`} />
16
        </>
17
18
19
20
    )
}

export default StudyPlanPage