1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-29 23:38:57 +09:00
YuruToot/app/assets/javascripts/components/is_mobile.jsx

6 lines
107 B
JavaScript

const LAYOUT_BREAKPOINT = 1024;
export function isMobile(width) {
return width <= LAYOUT_BREAKPOINT;
};