File size: 205 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { createRef } from 'react';

// jsdom doesn't mock the IntersectionObserver API used by react-intersection-observer
export function useInView() {
	return {
		ref: createRef(),
		inView: true,
	};
}