kintex/mobile/app/tickets/index.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

19 lines
637 B
TypeScript

/*
* SCR-M15 [모바일] 내 티켓 지갑 — 레거시 스택 라우트(/tickets).
* 본문은 공용 TicketWallet 컴포넌트(관람객 탭 (visitor)/tickets와 동일). 딥링크·예매 완료 복귀 호환용.
*/
import { Stack } from 'expo-router';
import React from 'react';
import { useTranslation } from 'react-i18next';
import { TicketWallet } from '../../components/tickets/TicketWallet';
export default function TicketWalletScreen() {
const { t } = useTranslation();
return (
<>
<Stack.Screen options={{ title: t('nav.ticketsIndex'), headerTitleAlign: 'center' }} />
<TicketWallet />
</>
);
}