mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 11:35:13 +00:00
5 lines
107 B
JavaScript
5 lines
107 B
JavaScript
const LAYOUT_BREAKPOINT = 1024;
|
|
|
|
export function isMobile(width) {
|
|
return width <= LAYOUT_BREAKPOINT;
|
|
};
|