StudyPlanListPage.js 412 Bytes
Newer Older
1
2
import Menu from "../components/Menu/Menu.js";
import HomeBtn from "../components/Buttons/HomeBtn.js";
Choi Ga Young's avatar
Choi Ga Young committed
3
import StudyPlanList from "../components/StudyPlanList.js";
4

5
6
const StudyPlanListPage = () => {
    return (
7
8
9
        <>
            <Menu />
            <HomeBtn />
Choi Ga Young's avatar
Choi Ga Young committed
10
11
            <h2 className="text-center">학업별 계획</h2>
            <StudyPlanList />
12
        </>
13
14
15
16
    )
}

export default StudyPlanListPage