TimeTableEdit.js 407 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
8
9
10
11
            <h2 className="border-bottom border-2 text-center pb-2 me-2">현재 상영시간표 정보</h2>
            <div>
                <TimeTableEditForm />
                <TimeTable />
            </div>
Kim, Subin's avatar
theater    
Kim, Subin committed
12
13
14
15
16
        </>
    )
}

export default TimeTableEdit