mirror of
https://github.com/stashapp/stash.git
synced 2026-01-30 12:02:55 +01:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
const isMobile = () =>
|
|
window.matchMedia("only screen and (max-width: 767px)").matches;
|
|
|
|
const ScreenUtils = {
|
|
isMobile,
|
|
};
|
|
|
|
export default ScreenUtils;
|