fix up some of the modals

This commit is contained in:
Matthew Hodgson 2015-07-21 17:02:06 -07:00
parent ceb214f192
commit 67d3368e1e
5 changed files with 34 additions and 17 deletions

View file

@ -26,10 +26,14 @@ module.exports = React.createClass({
render: function() {
return (
<div className="mx_LogoutPrompt">
Sign out?<br />
<button onClick={this.logOut}>Sign Out</button>
<button onClick={this.cancelPrompt}>Cancel</button>
<div>
<div className="mx_Dialog_content">
Sign out?
</div>
<div className="mx_Dialog_buttons">
<button onClick={this.logOut}>Sign Out</button>
<button onClick={this.cancelPrompt}>Cancel</button>
</div>
</div>
);
},