ScheduleList.js 411 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
import Item from "./ScheduleItem.js";
Kim, Subin's avatar
KU    
Kim, Subin committed
2
import styles from "./schedule.module.scss";
Kim, Subin's avatar
Kim, Subin committed
3
4
5

const ScheduleList = () => {
    return (
Kim, Subin's avatar
KU    
Kim, Subin committed
6
7
8
9
10
11
12
        <div className={`accordion accordion-flush ${styles.list}`} id="scheduleList">
            <Item />
            <Item />
            <Item />
            <Item />
            <Item />
            <Item />
Kim, Subin's avatar
Kim, Subin committed
13
14
15
16
17
18
            <Item />
        </div>
    )
}

export default ScheduleList