TimeTableEdit.js 458 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
import TimeTableEditForm from "./TimeTableEditForm";
import TimeTable from "./TimeTable";

Kim, Subin's avatar
theater    
Kim, Subin committed
4
5
6
const TimeTableEdit = () => {
    return (
        <>
7
            <h2 className="border-bottom border-2 text-center pb-2 me-2">현재 상영시간표 정보</h2>
Kim, Subin's avatar
Kim, Subin committed
8
            <div className="d-flex flex-column flex-lg-row-reverse">
9
                <TimeTable />
Kim, Subin's avatar
Kim, Subin committed
10
                <TimeTableEditForm />
11
            </div>
Kim, Subin's avatar
theater    
Kim, Subin committed
12
13
14
15
16
        </>
    )
}

export default TimeTableEdit