TimeTableEdit.js 459 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
const TimeTableEdit = () => {
Kim, Subin's avatar
공백    
Kim, Subin committed
5

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

export default TimeTableEdit