- (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>
19 lines
637 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|