kintex/mobile/app/(visitor)/tickets.tsx
zio 0933dbea41 feat(mobile): B2C visitor tab, congestion pill, live notice feed, ticket wallet, brand logo (v0.2.2 prep)
- (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>
2026-07-24 00:41:57 +09:00

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 />;
}