trc-client-core
Version:
The core of the TRC Client
15 lines (13 loc) • 440 B
JSX
var React = require('react');
var ErrorModal = React.createClass({
displayName: 'ErrorModal',
render: function () {
return (
<div>
<div className="modal_title">Error!</div>
<div className="modal_body"> The XHR request failed. <br/> Please note: As this user, you may not be able to perform this action. </div>
</div>
);
}
});
module.exports = ErrorModal;