purewhiter--mobilegym
9 行
233 B
TypeScript
9 行
233 B
TypeScript
import { useAppStrings } from '@/os/useAppStrings';
|
|
import { strings } from '../res/strings';
|
|
import { stringsEn } from '../res/strings.en';
|
|
|
|
export function useWechatReadingStrings() {
|
|
return useAppStrings(strings, stringsEn);
|
|
}
|
|
|