0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-21 11:32:47 +00:00

Added in a brew item component

This commit is contained in:
Scott Tolksdorf
2016-11-24 00:07:04 -05:00
parent 9e14872f06
commit 6af9dd9325
6 changed files with 38 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
const React = require('react');
const _ = require('lodash');
const cx = require('classnames');
const BrewItem = React.createClass({
getDefaultProps: function() {
return {
brew : {
}
};
},
render : function(){
return <div className='brewItem'>
BrewItem Component Ready.
</div>
}
});
module.exports = BrewItem;