Files
frontend-app-learner-dashboard/src/containers/CoursesPanel/CourseList/hooks.js
Maxwell Frank b8e08d8a8f Refactor course list and empty state (#308)
Co-authored-by: Maxwell Frank <mfrank@2u.com>
2024-04-03 13:41:20 -04:00

9 lines
220 B
JavaScript

import { useWindowSize, breakpoints } from '@openedx/paragon';
export const useIsCollapsed = () => {
const { width } = useWindowSize();
return width < breakpoints.medium.maxWidth;
};
export default useIsCollapsed;