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)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more