julong-lib/helpers/is-small-screen.ts

8 lines
157 B
TypeScript

import isBrowser from "./is-browser";
function isSmallScreen(): boolean {
return isBrowser() && window.innerWidth < 768;
}
export default isSmallScreen;