"use client";

import { useSyncExternalStore } from "react";

export function useWorkingGroupChartReady() {
  return useSyncExternalStore(
    () => () => {},
    () => true,
    () => false
  );
}
