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

add task solution #2617

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

add task solution #2617

wants to merge 3 commits into from

Conversation

Ren6436
Copy link

@Ren6436 Ren6436 commented Oct 1, 2024

Comment on lines 5 to 7
{person.isMarried ? (
<p className="Person__partner">
{person.partnerName} is my {person.sex === 'f' ? 'husband' : 'wife'}

Choose a reason for hiding this comment

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

nested ternary operators are a bad practice

decide before jsx what text will be rendered and just render in jsx.
something like that

const personPartnerType = sex === 'm' ? 'wife' : 'husband';
const personPartner = isMarried ? `${partnerName} is my ${personPartnerType}` : 'I am not married'

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,17 @@
// 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 6 to 8
<h2 className="Person__name">{`My name is ${person.name}`}</h2>
{person.age && <p className="Person__age">I am {person.age}</p>}
{person.isMarried ? (

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>}
{person.isMarried ? (
<h2 className="Person__name">{`My name is ${name}`}</h2>
{age && <p className="Person__age">I am {age}</p>}
{isMarried ? (

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.

3 participants