mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-20 16:12:40 +00:00
Changed project structure to have the root page into main and subbed out the pages into their own folder
This commit is contained in:
29
client/home/home.jsx
Normal file
29
client/home/home.jsx
Normal file
@@ -0,0 +1,29 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user