+
+
Choose the
+
+ {state.answer.name}
+
+
+
+
+ {state.isCompleted
+ ? 'Great job! What next?'
+ : 'Tap the photo that best shows the above occupation!'}
+
+ {state.isCompleted && (
+ <>
+
+
+ >
+ )}
+
+ {!state.isCompleted && (
+
+ {state.occupations.map((o: OccupationDataset) => (
+
+ ))}
+
+ )}
+
+ );
+};
+
+export default Occupations;
diff --git a/src/routes/language/Occupations/data.ts b/src/routes/language/Occupations/data.ts
new file mode 100644
index 0000000..c65b1be
--- /dev/null
+++ b/src/routes/language/Occupations/data.ts
@@ -0,0 +1,83 @@
+import React from 'react';
+
+import * as OccupationSvg from 'assets/images/languages/occupations';
+
+export interface OccupationDataset {
+ svg: React.FC