export const isEqual = (a: any, b: any) => { if (typeof a !== typeof b) return false; if (typeof a === 'object') return JSON.stringify(a) === JSON.stringify(b); return a === b; };