Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

87
Views
alternar dependiendo de si su id es par o impar Reaccionar

Estoy usando React para una página web. En un componente, tengo un div a la izquierda y una imagen a la derecha.

Me gustaría que se alternaran dependiendo de si su id es par o impar.

 function Item({ title, text, link, img,id }) { return ( <div > <div> <h3> {title} </h3> <p>{text}</p> <a href={link}> text </a> </div> <img src={img} alt={title} /> </div> ); }
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Convierta el div en un componente y renderícelos condicionalmente en el orden que desee:

 function Item(props) { return ( props.id % 2 == 0 ? <div > <Div {...props} /> <img src={img} alt={title} /> </div> : <div > <img src={img} alt={title} /> <Div {...props} /> </div> ); } const Div = ({ title, text, link }) => ( <div> <h3> {title} </h3> <p>{text}</p> <a href={link}> text </a> </div> )
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!