AddplanList.js 405 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import PlanItem from "./PlanItem.js";
import styles from "./studyplan.module.scss";

const AddplanList = () => {
    return (
        <div className={`mt-5 ${styles.list}`}>
            <div className={`accordion accordion-flush`} id="addplanlist">
                <PlanItem />
                <PlanItem />
                <PlanItem />
            </div>
        </div>
    )
}

export default AddplanList