Real-time Survey Tool Documentation
    Preparing search index...
    • Custom hook for managing presenter view data. Handles fetching event data, questions, and real-time updates for question display and results.

      Parameters

      • eventId: undefined | string

        The ID of the event.

      Returns {
          currentDisplayedQuestionId: null | number;
          displayedQuestions: Question[];
          event: null | Event;
          loading: boolean;
          questionResults: { [key: number]: QuestionResult[] };
      }