StudyPlanListPage.js 367 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 StudyPlanListForm from "../components/Form/StudyPlanListForm.js";
4

5
6
const StudyPlanListPage = () => {
    return (
7
8
9
        <>
            <Menu />
            <HomeBtn />
Choi Ga Young's avatar
Choi Ga Young committed
10
            <StudyPlanListForm />
11
        </>
12
13
14
15
    )
}

export default StudyPlanListPage