diff options
Diffstat (limited to 'src/screens/Onboarding/StepInterests/data.ts')
-rw-r--r-- | src/screens/Onboarding/StepInterests/data.ts | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/screens/Onboarding/StepInterests/data.ts b/src/screens/Onboarding/StepInterests/data.ts new file mode 100644 index 000000000..00a25331c --- /dev/null +++ b/src/screens/Onboarding/StepInterests/data.ts @@ -0,0 +1,36 @@ +export const INTEREST_TO_DISPLAY_NAME: { + [key: string]: string +} = { + news: 'News', + journalism: 'Journalism', + nature: 'Nature', + art: 'Art', + comics: 'Comics', + writers: 'Writers', + culture: 'Culture', + sports: 'Sports', + pets: 'Pets', + animals: 'Animals', + books: 'Books', + education: 'Education', + climate: 'Climate', + science: 'Science', + politics: 'Politics', + fitness: 'Fitness', + tech: 'Tech', + dev: 'Software Dev', + comedy: 'Comedy', + gaming: 'Video Games', + food: 'Food', + cooking: 'Cooking', +} + +export type ApiResponseMap = { + interests: string[] + suggestedAccountDids: { + [key: string]: string[] + } + suggestedFeedUris: { + [key: string]: string[] + } +} |