Code coverage report for src/components/student-dashboard/generic-event-row.cjsx

Statements: 83.33% (5 / 6)      Branches: 100% (0 / 0)      Functions: 0% (0 / 1)      Lines: 83.33% (5 / 6)      Ignored: none     

All files » src/components/student-dashboard/ » generic-event-row.cjsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24                                      
var BS, EventRow, React;
 
React = require('react');
 
BS = require('react-bootstrap');
 
EventRow = require('./event-row');
 
module.exports = React.createClass({
  displayName: 'GenericEventRow',
  propTypes: {
    event: React.PropTypes.object.isRequired,
    courseId: React.PropTypes.string.isRequired
  },
  render: function() {
    return React.createElement(EventRow, React.__spread({
      "feedback": ''
    }, this.props, {
      "className": 'generic'
    }), this.props.event.title);
  }
});