StudyPlanPage.js 591 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
import { useParams } from "react-router-dom";
Kim, Subin's avatar
Kim, Subin committed
2
3
4
5
import Menu from "../components/Menu/Menu";
import BackBtn from "../components/Buttons/BackBtn";
import Footer from "../components/Footer";
import AddplanList from "../components/StudyPlan/AddplanList";
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