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 works as expected. The only suggestion is to update the jsx option in your tsconfig.json to react-jsx (or react-jsxdev for development) if you're using React 17 or newer, as the current react value is deprecated in recent TypeScript versions. This is a minor configuration detail and doesn't affect your code's functionality. 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 jsx option should be set to react-jsx (or react-jsxdev for development) for React 17+ projects. Using react is deprecated in newer TypeScript versions and may not work as expected. Please update this value if you are using a recent version of React and TypeScript.
No description provided.