weblab-instrument
Version:
communication with instrument through usb
29 lines (17 loc) • 450 B
JSX
;
var msoActionCreators = require("../actions/mso-consoleActionCreators");
var msoStore = require("../stores/mso-consoleStore");
var AppFooter = React.createClass({
componentWillMount: function() {
},
componentDidMount: function() {
},
componentWillUnmount: function() {
},
render: function() {
return (
<h1>Footer</h1>
);
},
});
module.exports = AppFooter;