- (visitor) route group, visitor lib, tickets wallet - CongestionPill + LiveNoticeFeed components - login/tickets screens, i18n 4 locales, wordmark assets, splash Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
11 lines
367 B
TypeScript
11 lines
367 B
TypeScript
/*
|
|
* SCR-M15 [모바일] 관람객(B2C) 티켓 탭 — 공용 TicketWallet 본문 재사용.
|
|
* 헤더는 탭 레이아웃이 소유. 기존 /tickets 라우트와 동일 본문(편입).
|
|
*/
|
|
import React from 'react';
|
|
import { TicketWallet } from '../../components/tickets/TicketWallet';
|
|
|
|
export default function VisitorTicketsScreen() {
|
|
return <TicketWallet />;
|
|
}
|