mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-05 03:42:38 +00:00
24 lines
334 B
JavaScript
24 lines
334 B
JavaScript
var React = require('react');
|
|
var _ = require('lodash');
|
|
var cx = require('classnames');
|
|
|
|
var Statusbar = React.createClass({
|
|
|
|
getDefaultProps: function() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
|
|
render : function(){
|
|
var self = this;
|
|
return(
|
|
<div className='statusbar'>
|
|
Statusbar Ready!
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = Statusbar;
|