moodist/src/hooks/use-ssr.ts
2023-10-06 16:58:26 +03:30

12 lines
203 B
TypeScript

export function useSSR() {
const isDOM =
typeof window !== 'undefined' &&
window.document &&
window.document.documentElement;
return {
isBrowser: isDOM,
isServer: !isDOM,
};
}