We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/LambdaSchool/react-stateful-widgets/blob/51e2cb366bd1e1a83c50f60856a5dc93e3d05ce2/src/components/Squares.js#L55
I've observed a lot of students get stuck with a bug that is produced by the code above. It should be:
className={`square ${getClassName(id)}`}
A lot of the students complete the assignment, but then don't notice that the class name evaluates to squareactive when it should be square active
squareactive
square active
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/LambdaSchool/react-stateful-widgets/blob/51e2cb366bd1e1a83c50f60856a5dc93e3d05ce2/src/components/Squares.js#L55
I've observed a lot of students get stuck with a bug that is produced by the code above.
It should be:
A lot of the students complete the assignment, but then don't notice that the class name evaluates to
squareactive
when it should besquare active
The text was updated successfully, but these errors were encountered: