1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +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

6
client/helpers/shuffe.js Normal file
View File

@@ -0,0 +1,6 @@
const shuffe = (array) => {
array.sort(() => Math.random() - 0.5);
return array;
};
export default shuffe;