aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/EventLog.react.js
blob: 0ecf40b1bf9227b9acb42673c24b32b399427517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @jsx React.DOM */

var EventLog = React.createClass({
	close(){
		SettingsActions.update({
			showEventLog: false
		});
	},
    render(){
        return (
            <div className="eventlog">
            <pre>
            <i className="fa fa-close close-button" onClick={this.close}></i>
            much log.
            </pre>
            </div>
        );
    }
});