in src/pages/users.tsx [23:31]
function group(array, subGroupLength) { var index = 0; var newArray = []; while (index < array.length) { newArray.push(array.slice(index, index += subGroupLength)); } return newArray; }