-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Earth - Kal #35
base: master
Are you sure you want to change the base?
Earth - Kal #35
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work Kal, you have a fully functional Exquisite corpse game and you got all the tests to pass. Well done. Take a look at my note with regard to your one warning.
import './PlayerSubmissionForm.css'; | ||
|
||
const PlayerSubmissionForm = () => { | ||
const PlayerSubmissionForm = (props) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a note you're getting a warning when the application runs (when you type in a textbox) here because the original value of the forms are undefined
and then when the user types in them they get set.
It's because the keys in props.fields
, don't match the keys in wordFields
.
Assignment Submission: Exquisite React
Congratulations! You're submitting your assignment. Please reflect on the assignment with these questions.
Reflection
State
is a property managed within the component that we use to trigger changes/functions/etc.PlayerSubmissionForm
,FinalPoem
, andRecentSubmission
and those were nested inGame
.