0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-14 10:42:38 +00:00

Improved the dice rolling algo

This commit is contained in:
Scott Tolksdorf
2015-11-21 15:53:04 -05:00
parent 97ce6ab9ee
commit fc21364a0c
8 changed files with 89 additions and 23 deletions

View File

@@ -0,0 +1,17 @@
var React = require('react');
var _ = require('lodash');
var cx = require('classnames');
var Encounters = React.createClass({
render : function(){
var self = this;
return(
<div className='encounters'>
Encounters Ready!
</div>
);
}
});
module.exports = Encounters;

View File

@@ -0,0 +1,3 @@
.encounters{
}