blob: 5f1930313415704d0ca6dc698c6926bfd2ae95ea (
plain) (
blame)
1
2
3
4
5
|
export const supportedLanguages = [
{ id: 'en', title: 'English' },
{ id: 'nb', title: 'Norwegian', isDefault: true },
]
export const baseLanguage = supportedLanguages.find(l => l.isDefault) as { id: string, title: string };
|