yrexpert-js
Version:
L'interface Web pour votre système expert...
48 lines (38 loc) • 1.13 kB
JavaScript
/*
!----------------------------------------------------------------------------!
! !
! Yexpert : (your) Système Expert sous Mumps GT.M et GNU/Linux !
! Copyright (C) 2001-2015 by Hamid LOUAKED (HL). !
! !
!----------------------------------------------------------------------------!
*/
var React = require('react');
var ReactBootstrap = require('react-bootstrap');
var {
Button,
Navbar
} = ReactBootstrap;
var controller;
module.exports = React.createClass({
startMonitor: function() {
location.reload();
},
render: function() {
return (
<div>
<Navbar inverse >
<Navbar.Brand>
{this.props.title}
</Navbar.Brand>
</Navbar>
<Button
bsStyle="success"
onClick = {this.startMonitor}
>
Redémarrer
</Button>
</div>
);
}
});