feat: SAPIENS Mobile App - Initial commit

React Native mobile application for SAPIENS news platform.
Consolidated all previous history into single commit.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
jungwoo choi
2025-10-23 14:30:25 +09:00
commit 919afe56f2
1516 changed files with 64072 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import { useLanguage as useLanguageContext } from '@/contexts/LanguageContext';
export function useLanguage() {
const { language: selectedLanguage, setLanguage } = useLanguageContext();
const onLanguageChange = (lang: string) => {
setLanguage(lang as any);
};
return { selectedLanguage, onLanguageChange };
}