0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-29 15:32:40 +00:00

Admin controls for compressing old brews

This commit is contained in:
Trevor Buckner
2020-01-23 10:50:35 -05:00
parent 4128670a9f
commit a06b29c6f5
6 changed files with 125 additions and 5 deletions

View File

@@ -4,6 +4,7 @@ const createClass = require('create-react-class');
const BrewCleanup = require('./brewCleanup/brewCleanup.jsx');
const BrewLookup = require('./brewLookup/brewLookup.jsx');
const BrewCompress = require ('./brewCompress/brewCompress.jsx');
const Stats = require('./stats/stats.jsx');
const Admin = createClass({
@@ -26,6 +27,8 @@ const Admin = createClass({
<BrewLookup />
<hr />
<BrewCleanup />
<hr />
<BrewCompress />
</div>
</div>;
}