2026-04-24 15:48:07 +07:00
|
|
|
import { useIsMobileBreakpoint } from './use-window-width';
|
2024-05-29 16:17:37 +02:00
|
|
|
|
|
|
|
|
const useIsMobile = () => {
|
2026-04-24 15:48:07 +07:00
|
|
|
return useIsMobileBreakpoint();
|
2024-05-29 16:17:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default useIsMobile;
|