Added Match Sentences as a possible exercise type for Reading

This commit is contained in:
Tiago Ribeiro
2024-03-24 23:32:14 +00:00
parent 5decfb098d
commit 6d817e6d27

View File

@@ -127,6 +127,7 @@ const ReadingGeneration = () => {
{type: "multipleChoice", label: "Multiple Choice"},
{type: "trueFalse", label: "True or False"},
{type: "writeBlanks", label: "Write the Blanks"},
{type: "paragraphMatch", label: "Match Sentences"},
];
const toggleType = (type: string) => setTypes((prev) => (prev.includes(type) ? [...prev.filter((x) => x !== type)] : [...prev, type]));