React >> Passing data using Children
class IssueRow extends React.Component {
render() {
const borderedStyle = { border: "1px solid silver", padding: 4 };
return (
<tr>
<td style={borderedStyle}>{this.props.issue_id}</td>
<td style={borderedStyle}>{this.props.children}</td>
</tr>
)
}
}
class IssueTable extends React.Component {
render() {
const borderedStyle = { border: "1px solid silver", padding: 6 };
return (
<table style={{ borderCollapse: "collapse" }}>
<thead>
<tr>
<th style={borderedStyle}>Id</th>
<th style={borderedStyle}>Title</th>
</tr>
</thead>
<tbody>
<IssueRow issue_id={1}>Error in console when clicking Add</IssueRow>
<IssueRow issue_id={2}>Missing bottom <b>border</b> on panel</IssueRow>
</tbody>
</table>
)
}
}