任何人都可以建議我良好的模態彈出reactjs和?我希望它用於刪除確認。我嘗試了react-foundation-apps的模式,但由於文檔較少,我無法將它用於表格數據中的刪除功能。ReactJS基金會模式彈出刪除確認和數據表的Reactjs和基礎與排序/尋呼支持
var React = require('react');
var EmployeeList = React.createClass({
render: function() {
var employees = this.props.employees.map(function(e, i){
return (
<tr key={i}>
<td>{e.employeeName}</td>
<td><a title="edit" href="#"><i className="fi-pencil"></i></a></td>
<td>
<a title="delete" href="#"><i className="fi-trash"></i></a>
</td>
</tr>
)
}, this);
return (
<div>
<table id="users">
<thead>
<tr>
<th>Employee</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
{employees}
</tbody>
</table>
</div>
);
}
});
module.exports = EmployeeList;
加
建議我與基礎reactjs良好的數據表/數據網格。