describe('useSSR', () => {
  it('should correctly tell if we are on the server', () => {
    const { result } = renderHook(() => useSSR())
    const { isServer, isBrowser, isNative, device } = result.current
    expect(isServer).toBe(true)