0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-29 00:22:47 +00:00
Files
homebrewery/client/home/home.jsx

30 lines
491 B
JavaScript

var React = require('react');
var _ = require('lodash');
var cx = require('classnames');
//var Icon = require('naturalcrit/icon.svg.jsx');
//var Logo = require('naturalcrit/logo/logo.jsx');
//var HomebrewIcon = require('naturalcrit/homebrewIcon.svg.jsx');
//var CombatIcon = require('naturalcrit/combatIcon.svg.jsx');
var Home = React.createClass({
navigate : function(){
},
render : function(){
return(
<div className='home'>
</div>
);
}
});
module.exports = Home;