useCourses hook. This hook is responsible for fetching and managing the state of courses and attendance threshold. It uses the useState and useEffect hooks from React to accomplish this. The courses and threshold are stored in state variables, and are updated when the hook fetches the data from the API. The hook returns an object containing the courses and threshold.

  • Returns { courses: never[]; threshold: null | number }

    The courses and threshold.