add task solution#4449
Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
Your solution successfully meets all task requirements. The App.jsx has been properly decomposed into three components (Article, Header, Welcome) with their own folders, each using export default as expected by tests. CSS is correctly split across component folders with global styles remaining in App.css. One minor note: the article__title class in Article.jsx doesn't have an explicit CSS definition, though the element inherits styling from its parent .article container, so functionality isn't broken. This is a minor CSS completeness issue rather than a blocker. The implementation is solid and ready for use.
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Footnotes
| padding: 1em; | ||
|
|
||
| font-size: 140%; | ||
|
|
There was a problem hiding this comment.
The Article component renders an <h2 className="article__title"> but Article.css does not contain any .article__title styles. Either add the missing styles or remove the class if not needed.
DEMO LINK