import { useApp } from "ink";

export const useExitDelay = () => {
  const { exit } = useApp();
  return () => setTimeout(exit, 500);
};
