Skip to content
New issue

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

solution #2618

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

StanislavKapytsia
Copy link

DEMO LINK

Implement a Person component rendering a person details using the given markup
and use it 3 times inside the App instead of static markup.

  • pass the whole person as a prop <Person person={misha} /> (not individual fields);
  • omit age if it is not given;
  • if a man is married use wife for a partner and husband if a woman is married;
  • if a person is not marriend - print I am not married message;
  • keep the same classNames in Person.jsx as in App.jsx (Person, Person__name, Person__age, Person__partner).

Copy link

@anastasiiavorobiova anastasiiavorobiova left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work! Almost done!

@@ -1 +1,13 @@
// export const Person = ({ person }) => ();
export const Person = ({ person }) => (

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider using destructuring here

Comment on lines 3 to 5
<h2 className="Person__name">My name is {person.name}</h2>

{person.age && <p className="Person__age">I am {person.age}</p>}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<h2 className="Person__name">My name is {person.name}</h2>
{person.age && <p className="Person__age">I am {person.age}</p>}
<h2 className="Person__name">My name is {name}</h2>
{age && <p className="Person__age">I am {age}</p>}

{person.age && <p className="Person__age">I am {person.age}</p>}

<p className="Person__partner">
{person.isMarried === true

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
{person.isMarried === true
{isMarried

Comment on lines 9 to 10
? `${person.partnerName} is my ${person.sex === 'm' ? 'wife' : 'husband'}`
: 'I am not married'}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
? `${person.partnerName} is my ${person.sex === 'm' ? 'wife' : 'husband'}`
: 'I am not married'}
? `${partnerName} is my ${sex === MAN ? 'wife' : 'husband'}`
: 'I am not married'}

Consider creating const MAN = 'm'

Copy link

@anastasiiavorobiova anastasiiavorobiova left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants