import { Stack } from 'expo-router'
import { View } from 'react-native'
import { StatusBar } from 'expo-status-bar'
import { ThemeProvider, useTheme } from '../constants/ThemeContext'
/*
* ITMS 루트 레이아웃 — ThemeProvider + 스택.
* 스플래시는 이미지 자산 없이 BrandSplash(순수 View)로 대체(index 게이트에서 표시).
*/
function ItmsStack() {
const { t, resolved } = useTheme()
return (
)
}
export default function RootLayout() {
return (
)
}