mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
Fix codebase audit regressions while preserving UI/UX behavior and adding review-driven hardening.
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
import { useIsMobileBreakpoint } from './use-window-width';
|
|
|
|
const useIsMobile = () => {
|
|
return useIsMobileBreakpoint();
|
|
};
|
|
|
|
export default useIsMobile;
|