export const isObject = (obj) => {
  return typeof obj === "object" && obj !== null;
};
