mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 18:32:41 +00:00
25 lines
526 B
JavaScript
25 lines
526 B
JavaScript
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 <>
|
|
<Stats />
|
|
<hr />
|
|
<BrewLookup />
|
|
<hr />
|
|
<BrewCleanup />
|
|
<hr />
|
|
<BrewCompress />
|
|
</>;
|
|
}
|
|
});
|
|
|
|
module.exports = BrewUtils;
|