TicketingTimeTable.js 434 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
const TicketingTimeTable = ({ ticketInfo }) => {

Jiwon Yoon's avatar
Jiwon Yoon committed
3
4
    return (
        <div>
Kim, Subin's avatar
Kim, Subin committed
5
6
7
            <div className="text-center" style={{ color: "white" }}>
                {ticketInfo.movieId && ticketInfo.cinema
                    ? <div>{ticketInfo.movieId} {ticketInfo.cinema}</div>
Jiwon Yoon's avatar
Jiwon Yoon committed
8
9
10
11
12
13
14
                    : <div>영화와 극장을 모두 선택해주세요.</div>}
            </div>
        </div>
    )
}

export default TicketingTimeTable