function Comment(props) {
return (
<div >
{props.General.firstName}
{props.General.FirstName}
{props.General.LastName}
</div>
);
}
var comment = JSON.parse('[{\n' +
' general": {\n' +
' "firstName": "Liana",\n' +
' "lastName": "Crooks",\n' +
' "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/kevinoh/128.jpg"\n' +
' },\n' +
' "job": {\n' +
' "company": "Ledner, Johnson and Predovic",\n' +
' "title": "Investor Functionality Coordinator"\n' +
' },\n' +
' "contact": {\n' +
' "email": "Gerry_Hackett77@gmail.com",\n' +
' "phone": "(895) 984-0132"\n' +
' },\n' +
' "address": {\n' +
' "street": "1520 Zemlak Cove",\n' +
' "city": "New Devon",\n' +
' "zipCode": "42586-7898",\n' +
' "country": "Guinea-Bissau"\n' +
' }\n' +
' },\n' +
' {\n' +
' "general": {\n' +
' "firstName": "Deontae",\n' +
' "lastName": "Dare",\n' +
' "avatar": "https://s3.amazonaws.com/uifaces/faces/twitter/andysolomon/128.jpg"\n' +
' },\n' +
' "job": {\n' +
' "company": "D\'Amore, Dicki and Borer",\n' +
' "title": "International Applications Consultant"\n' +
' },\n' +
' "contact": {\n' +
' "email": "Kellie.Marvin38@yahoo.com",\n' +
' "phone": "1-615-843-3426 x600"\n' +
' },\n' +
' "address": {\n' +
' "street": "65901 Glover Terrace",\n' +
' "city": "Alden ton",\n' +
' "zipCode": "57744-4248",\n' +
' "country": "Kenya"\n' +
' }\n' +
' }]')
console.log(comment)
ReactDOM.render(
<Comment
General={comment.general}
Job={comment.job}
Contact={comment.contact}
Adress={comment.address}/>,
document.getElementById('root')
);