StudyPlanPage.js 499 Bytes
Newer Older
1
2
import Menu from "../components/Menu/Menu.js";
import BackBtn from "../components/Buttons/BackBtn.js";
3
import Footer from "../components/Footer.js";
Choi Ga Young's avatar
Choi Ga Young committed
4
import AddplanList from "../components/StudyPlan/AddplanList.js";
5

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

export default StudyPlanPage