DEV Community

Clever Cottonmouth
Clever Cottonmouth

Posted on

How to create objects and pass to components in React

Const arraydata = [
{

Title:’Miraj’,
Info: ‘miraj……..’
},
{
Title:’rahul’,
Info:’rahul..’
}
]

arraydata.map((data)=>{

<Miraj, title={data.title}  info={data.info} /> 
Enter fullscreen mode Exit fullscreen mode

})

Const Miraj = (props)=>{

const {title,info} = props
Enter fullscreen mode Exit fullscreen mode

return(


{title}
</div>

<div>
{info}
</div>

)
}

Top comments (0)

The Most Contextual AI Development Assistant

Pieces.app image

Our centralized storage agent works on-device, unifying various developer tools to proactively capture and enrich useful materials, streamline collaboration, and solve complex problems through a contextual understanding of your unique workflow.

👥 Ideal for solo developers, teams, and cross-company projects

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay