Skip to content

Instantly share code, notes, and snippets.

View apeverything's full-sized avatar

apeverything

  • Joined May 10, 2026
View GitHub Profile
import { useState, useEffect, useRef } from “react”;
const STATUSES = {
PENDING: “pending”,
CHECKED_IN: “checked_in”,
NOT_INTERESTED: “not_interested”,
SALE: “sale”,
CALLBACK: “callback”,
NO_ANSWER: “no_answer”,
};