mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-28 22:26:41 +07:00
7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
export const isTablet = () => {
|
|
if (typeof window === 'undefined') {
|
|
return false;
|
|
}
|
|
|
|
return window.innerWidth < 599;
|
|
};
|