0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 07:02:38 +00:00

Finished stats and brew lookup on admin panel

This commit is contained in:
Scott Tolksdorf
2018-12-03 17:32:04 -05:00
parent 4241052952
commit 7656e53606
14 changed files with 308 additions and 394 deletions

View File

@@ -0,0 +1,19 @@
const React = require('react');
const createClass = require('create-react-class');
const cx = require('classnames');
const BrewCleanup = createClass({
displayName : 'BrewCleanup',
getDefaultProps(){
return {
};
},
render(){
return <div className='BrewCleanup'>
BrewCleanup Component Ready.
</div>;
}
});
module.exports = BrewCleanup;

View File

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