use-stats.ts179 BView on GitHub
import { useDoState } from '@/modules/threads/thread/hooks/use-do-state';

export const useStats = () => {
  const [doState] = useDoState();
  return { data: doState.counts };
};