Code coverage report for src/components/qa/content.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/qa/ » content.cjsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20                              
var QAContent, React, ReferenceBookPage;
 
React = require('react');
 
ReferenceBookPage = require('../reference-book/page-shell');
 
QAContent = React.createClass({displayName: "QAContent",
  propTypes: {
    cnxId: React.PropTypes.string.isRequired
  },
  render: function() {
    return React.createElement("div", null, React.createElement(ReferenceBookPage, {
      "cnxId": this.props.cnxId
    }));
  }
});
 
module.exports = QAContent;