0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-05 03:42:38 +00:00
Files
homebrewery/client/homebrew/statusbar/statusbar.jsx
2015-12-22 21:11:08 -05:00

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;