0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-19 12:02:41 +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;

View File

@@ -0,0 +1,3 @@
.brewItem{
}