const React = require('react'); const _ = require('lodash'); const cx = require('classnames'); const HomebrewAdmin = require('./homebrewAdmin/homebrewAdmin.jsx'); const Admin = React.createClass({ getDefaultProps : function() { return { url : '', admin_key : '', homebrews : [], }; }, render : function(){ return (
naturalcrit admin
); } }); module.exports = Admin;