Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
Great job! 🎉 Your implementation meets all the core requirements and functions as expected. The only minor issue is the deprecated 'jsx' value in tsconfig.json, but this does not affect the main functionality of your code. For future projects, consider updating it to 'react-jsx' if you're using React 17+, but no changes are needed for this task. Keep up the good work!
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Footnotes
| "src" | ||
| ], | ||
| "compilerOptions": { | ||
| "jsx": "react", |
There was a problem hiding this comment.
The value 'react' for the 'jsx' compiler option is deprecated in newer TypeScript versions. If you are using React 17 or later, you should use 'react-jsx' instead, as per the TypeScript documentation. Please update this option if your project uses a recent React version.
DEMO LINK