const TicketingTimeTable = (props) => { return (
{console.log(props.ticketInfo.movieId, props.ticketInfo.theater)} {props.ticketInfo.movieId && props.ticketInfo.theater ?
{props.ticketInfo.movieId} {props.ticketInfo.theater}
:
영화와 극장을 모두 선택해주세요.
}
) } export default TicketingTimeTable