1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00

Add sidebar layout

This commit is contained in:
Phuoc Nguyen
2019-11-16 11:14:31 +07:00
parent 254ba0b4b6
commit b8e8aff61c
11 changed files with 140 additions and 8 deletions

2
client/helpers/random.js Normal file
View File

@@ -0,0 +1,2 @@
const random = (min, max) => min + Math.round(Math.random() * (max - min));
export default random;