Currently the set of categories & words is very limited; you can modify src/components/Room.js to add new categories & words.
In Room.js:
const your_category = ['word1', 'word2', 'word3']
Don't forget to add your category & words to the array of wordsets:
for (let i = 1; i < your_category.length; i++) { wordsets.push(['NAME OF YOUR CATEGORY', your_category[i]]) }
If you would like, you can also add words to existing categories!
Currently the set of categories & words is very limited; you can modify src/components/Room.js to add new categories & words.
In Room.js:
const your_category = ['word1', 'word2', 'word3']Don't forget to add your category & words to the array of wordsets:
for (let i = 1; i < your_category.length; i++) { wordsets.push(['NAME OF YOUR CATEGORY', your_category[i]]) }If you would like, you can also add words to existing categories!