0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-31 07:28:11 +00:00

Good start on the homepage and added int eh google analytics code

This commit is contained in:
Scott Tolksdorf
2016-01-08 19:26:30 -05:00
parent 46186c0de2
commit 8e7a5fadec
11 changed files with 159 additions and 9 deletions

View File

@@ -3,13 +3,15 @@ var _ = require('lodash');
var cx = require('classnames');
var CreateRouter = require('pico-router').createRouter;
var Home = require('./home/home.jsx');
var CombatManager = require('./combatManager/combatManager.jsx');
//var Homebrew = require('./homebrew/homebrew.jsx');
var Router = CreateRouter({
'/' : <CombatManager />,
'/' : <Home />,
'/combat' : <CombatManager />,
//'/homebrew' : <Homebrew />,
});