TicketingTimeTable.js 529 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const TicketingTimeTable = (props) => {
    return (
        <div>
            <div className="text-center" style={{color:"white"}}>
                {console.log(props.ticketInfo.movieId, props.ticketInfo.theater)}
                {props.ticketInfo.movieId && props.ticketInfo.theater
                    ? <div>{props.ticketInfo.movieId} {props.ticketInfo.theater}</div>
                    : <div>영화와 극장을 모두 선택해주세요.</div>}
            </div>
        </div>
    )
}

export default TicketingTimeTable