export function isMobile() { return window.innerWidth < 768 } export function removeItem(arr: Array, value: T): Array { const index = arr.indexOf(value); if (index > -1) { arr.splice(index, 1); } return [...arr]; }