Files
2022-11-07 15:06:09 -05:00

9 lines
254 B
JavaScript

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