

var React = require('react');


var RequiredRoleQAReportInfo = React.createClass({
    displayName: 'RequiredRoleQAReportInfo',
    render: function() {
        return (
            <div>
                <div className="modal_title">Required Roles QA Report</div>
                <div className="modal_body">
                    <div className="Typography row">
                        <p><strong>Unapproved</strong> displays a list of staff that have the Job Description of Technical Advisor, without having been Approved on the TRC.</p>                        
                        <p><strong>Incorrect Job Description</strong> displays a list of staff that have been Approved on the TRC, but are yet to have their Job Description changed to Technical Advisor.</p>
                    </div>
                    <a className="Button l-right" onClick={this.props.onClose}>Okay</a>
                </div>
            </div>
        );
    }
});

module.exports = RequiredRoleQAReportInfo;