2015-06-12 17:34:17 +01:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-06-23 14:40:50 +01:00
|
|
|
var LogoutButtonController = require("../../../../src/controllers/atoms/LogoutButton");
|
2015-06-12 17:34:17 +01:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-06-19 16:21:09 +01:00
|
|
|
displayName: 'LogoutButton',
|
2015-06-19 12:53:48 +01:00
|
|
|
mixins: [LogoutButtonController],
|
2015-06-12 17:34:17 +01:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<button className="mx_LogoutButton" onClick={this.onClick}>Sign out</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|