Loading screen

This commit is contained in:
Jori Lallo
2016-04-30 13:24:13 -07:00
parent 12f0e5d501
commit aa8dbe5626
6 changed files with 65 additions and 1 deletions

7
src/utils/random.js Normal file
View File

@@ -0,0 +1,7 @@
const randomInteger = (min, max) => {
return Math.floor(Math.random()*(max-min+1)+min);
}
export {
randomInteger
};