Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/Room.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const flowers = ['Daisy','Rose','Iris','Narcissus','Orchid','Tulip','Sunflower',
const sports = ['basketball', 'volleyball', 'badminton', 'hockey', 'ice skating', 'tennis', 'cycling', 'surfing', 'fencing', 'boxing', 'soccer', 'cricket', 'table tennis', 'rowing', 'snowboarding', 'baseball', 'bowling', 'skateboarding', 'figure skating', 'golf', 'canoeing', 'horse racing', 'archery', 'gymnastics', 'handball', 'ice hockey', 'bodybuilding', 'recreational fishing', 'karate', 'field hockey', 'lacrosse', 'softball', 'bobsleigh', 'judo', 'rafting', 'artistic swimming', 'olympic weightlifting', 'rhythmic gymnastics', 'racquetball', 'sailing', 'cheerleading', 'football', 'dodgeball', 'pole vault', 'darts', 'croquet', 'polo', 'shot put', 'taekwando', 'wrestling', 'rubgy']
const colors = ['red', 'yellow', 'blue', 'brown', 'orange', 'green', 'violet', 'black','grey','navy blue', 'carnation pink', 'yellow orange', 'blue green', 'red violet', 'red orange', 'yellow green', 'blue violet', 'white', 'violet red', 'dandelion', 'cerulean', 'apricot', 'scarlet', 'green yellow', 'indigo','gray']
const weather =['sunny', 'clear','cloudy','overcast','rain','drizzle','hail','humid','snow','thunderstorm','tornado','hurricane','fog','sandstorm']
const job = ['Accountant','Architect','Artist','Baker','Barista','Chef','Computer programmer','Dentist','Doctor','Graphic designer','Police officer','Photographer','Teacher','Lawyer']
for (let i = 0; i < food.length; i++) {
wordsets.push(['food', food[i]])
}
Expand Down Expand Up @@ -107,6 +108,9 @@ for (let i = 1; i < colors.length; i++) {
for (let i = 1; i < weather.length; i++) {
wordsets.push(['weather', weather[i]])
}
for (let i = 1; i < job.length; i++) {
wordsets.push(['job', job[i]])
}
class Room extends React.Component {
constructor(props) {
super(props)
Expand Down