diff --git a/client/admin/admin.jsx b/client/admin/admin.jsx index 92e0b2aee..a84af6f44 100644 --- a/client/admin/admin.jsx +++ b/client/admin/admin.jsx @@ -2,11 +2,7 @@ require('./admin.less'); const React = require('react'); 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 BrewUtils = require('./brewUtils/brewUtils.jsx'); const Admin = createClass({ getDefaultProps : function() { @@ -23,13 +19,7 @@ const Admin = createClass({
- -
- -
- -
- +
; } diff --git a/client/admin/brewCleanup/brewCleanup.jsx b/client/admin/brewUtils/brewCleanup/brewCleanup.jsx similarity index 100% rename from client/admin/brewCleanup/brewCleanup.jsx rename to client/admin/brewUtils/brewCleanup/brewCleanup.jsx diff --git a/client/admin/brewCleanup/brewCleanup.less b/client/admin/brewUtils/brewCleanup/brewCleanup.less similarity index 100% rename from client/admin/brewCleanup/brewCleanup.less rename to client/admin/brewUtils/brewCleanup/brewCleanup.less diff --git a/client/admin/brewCompress/brewCompress.jsx b/client/admin/brewUtils/brewCompress/brewCompress.jsx similarity index 100% rename from client/admin/brewCompress/brewCompress.jsx rename to client/admin/brewUtils/brewCompress/brewCompress.jsx diff --git a/client/admin/brewCompress/brewCompress.less b/client/admin/brewUtils/brewCompress/brewCompress.less similarity index 100% rename from client/admin/brewCompress/brewCompress.less rename to client/admin/brewUtils/brewCompress/brewCompress.less diff --git a/client/admin/brewLookup/brewLookup.jsx b/client/admin/brewUtils/brewLookup/brewLookup.jsx similarity index 100% rename from client/admin/brewLookup/brewLookup.jsx rename to client/admin/brewUtils/brewLookup/brewLookup.jsx diff --git a/client/admin/brewLookup/brewLookup.less b/client/admin/brewUtils/brewLookup/brewLookup.less similarity index 100% rename from client/admin/brewLookup/brewLookup.less rename to client/admin/brewUtils/brewLookup/brewLookup.less diff --git a/client/admin/brewUtils/brewUtils.jsx b/client/admin/brewUtils/brewUtils.jsx new file mode 100644 index 000000000..de8c29895 --- /dev/null +++ b/client/admin/brewUtils/brewUtils.jsx @@ -0,0 +1,24 @@ +const React = require('react'); +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 BrewUtils = createClass({ + render : function(){ + return <> + +
+ +
+ +
+ + ; + } +}); + +module.exports = BrewUtils; diff --git a/client/admin/stats/stats.jsx b/client/admin/brewUtils/stats/stats.jsx similarity index 100% rename from client/admin/stats/stats.jsx rename to client/admin/brewUtils/stats/stats.jsx diff --git a/client/admin/stats/stats.less b/client/admin/brewUtils/stats/stats.less similarity index 100% rename from client/admin/stats/stats.less rename to client/admin/brewUtils/stats/stats.less