You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.tsx 407B

123456789101112131415161718192021
  1. import { translationTable } from '@/locales/config';
  2. import TranslationTable from './TranslationTable';
  3. function UserSettingLocale() {
  4. return (
  5. <TranslationTable
  6. data={translationTable}
  7. languages={[
  8. 'English',
  9. 'Vietnamese',
  10. 'Spanish',
  11. 'zh',
  12. 'zh-TRADITIONAL',
  13. 'ja',
  14. 'pt-br',
  15. ]}
  16. />
  17. );
  18. }
  19. export default UserSettingLocale;