Solution#4272
Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
The implementation meets all functional requirements and passes all tests. Although the code uses separate JSX expressions instead of a template literal as per style guidelines, this is a non-critical stylistic issue that does not affect functionality. The core requirements are satisfied, so the submission is approved.
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Footnotes
| import { Sum } from './components/Sum/Sum'; | ||
|
|
There was a problem hiding this comment.
This violates checklist item #2: 'Use string interpolation inside tag content'. Replace with template literal syntax: {Sum of ${a} and ${b} is ${a + b}}
| <p> | ||
| Sum of {a} and {b} is {a + b} |
There was a problem hiding this comment.
This violates checklist item #2: 'Use string interpolation inside tag content'. The paragraph should use a template literal: {Sum of ${a} and ${b} is ${a + b}} instead of individual expressions.
No description provided.