1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 22:26:41 +07:00
vault-frontend/src/constants/dom/index.ts
2022-01-07 19:16:42 +07:00

7 lines
131 B
TypeScript

export const isTablet = () => {
if (typeof window === 'undefined') {
return false;
}
return window.innerWidth < 599;
};