comic_test / src /lib /useIsBusy.ts
BBo09's picture
Upload 255 files
c511b81 verified
import { useStore } from "@/app/store"
export function useIsBusy() {
const isGeneratingStory = useStore(s => s.isGeneratingStory)
const atLeastOnePanelIsBusy = useStore(s => s.atLeastOnePanelIsBusy)
const isBusy = isGeneratingStory || atLeastOnePanelIsBusy
return isBusy
}