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