mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
15 lines
381 B
JavaScript
15 lines
381 B
JavaScript
var React = require('react');
|
|
|
|
var LogoutButtonController = require("../../../../src/controllers/atoms/LogoutButton");
|
|
|
|
module.exports = React.createClass({
|
|
displayName: 'LogoutButton',
|
|
mixins: [LogoutButtonController],
|
|
|
|
render: function() {
|
|
return (
|
|
<button className="mx_LogoutButton" onClick={this.onClick}>Sign out</button>
|
|
);
|
|
}
|
|
});
|