2015-06-12 18:34:17 +02:00
|
|
|
var React = require('react');
|
|
|
|
|
2015-06-19 13:53:48 +02:00
|
|
|
var LogoutButtonController = require("../../controllers/atoms/LogoutButton");
|
2015-06-12 18:34:17 +02:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-06-19 13:53:48 +02:00
|
|
|
mixins: [LogoutButtonController],
|
2015-06-12 18:34:17 +02:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<button className="mx_LogoutButton" onClick={this.onClick}>Sign out</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|