1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/public/js/components/log/LogEntryList.jsx
2020-02-20 08:30:17 +01:00

33 lines
946 B
JavaScript

var React = require('react'),
LogEntry = require('./LogEntry');
var LogEntryList = React.createClass({
propTypes: {
events: React.PropTypes.array.isRequired
},
render: function() {
var logEntryNodes = this.props.events.map(function(event) {
return <LogEntry event={event} key={event.name} />;
});
return (
<div className=''>
<table className='outerborder zebra-striped'>
<thead>
<tr>
<th>When</th>
<th>Action</th>
<th>Data</th>
<th>Author</th>
</tr>
</thead>
<tbody>
{logEntryNodes}
</tbody>
</table>
</div>
);
}
});
module.exports = LogEntryList;